36-人工智慧搜寻演算法与解题实作.ppt

36-人工智慧搜寻演算法与解题实作.ppt

  1. 1、本文档共36页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
36-人工智慧搜寻演算法与解题实作.ppt

國立台北大學 資訊工程學系 人工智慧搜尋演算法 與解題實作 Jen-Chun Chang 張仁俊 (modified from 陳榮傑) Background Data structures Stacks, queues, hash tables, heaps … Algorithms Recursive algorithms Dynamic programming 3 classes of AI search problems Problem Space Model 八位數碼問題(8 puzzle) How to avoid duplicate node in the search tree? Use hash! Search strategies Brute-Force Search Breadth-First Search (BFS) Uniform-Cost Search Depth-First Search (DFS) Depth-First Iterative-Deepening Search (DFID Search) Bidirectional Search Order of node generation for breadth-first search Order of node generation for depth-first search Order of node generation for DFID search Search strategies Heuristic Search Pure Heuristic Search A* Algorithm Iterative-Deepening-A* Depth-First Branch-and-Bound Heuristic Path Algorithm Best-First Search In each cycle of a best-first search, the node n that is best according to some cost function f(n) is chosen for expansion. Let g(n) be the cost of the path from the initial state to node n, and h(n) be the heuristic estimate of the cost of a path from node n to a goal. Best-First Search Breadth-first search, uniform-cost search, and pure heuristic search are all special cases of best-first search. Breadth-first search:f(n)=the depth of node n Uniform-cost search: f(n)= g(n) Pure heuristic search: f(n)= h(n) A* algorithm: f(n)= g(n)+h(n) Heuristic path algorithm: f(n)= (1-w)*g(n)+w*h(n) 量杯問題 三量杯容量 80, 50, 30 80杯滿, 50, 30杯空 如何得使三量杯得水 40, 40, 0? 量杯問題(BFS) How to implement BFS? Use queue! 八位數碼問題(DFS) How to implement DFS? Use stack! Node expansion: Generating all the children of a given state. Node generation: Creating the data structure that corresponds to a problem state. DFS always generates next a child of the deepest unexpanded node. 旅行者推銷員問題(uniform-cost search) How to implement Best First Search? Use priority queue(heap)! 反溯法Backtracking 八后問題The 8-queen problem C

文档评论(0)

小玉儿 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档