Dijkstra’s algorithm builds a shortest path tree one edge at a time by first
adding the source node to the SPT and then by adding the edge that gives
the shortest path from the source to a node not already on the SPT. This
process results in an SPT containing the shortest path from every node in
the graph to the source node. (查看原文)
Dijkstra’s algorithm searches by minimizing the cost of the path so far. It
can be improved significantly by taking into account, when putting nodes
on the frontier, anestimateof the cost to the target from each node under
consideration. This estimate is usually referred to as aheuristic, and the
name given to the algorithm that uses this method of heuristically directed
search is A* (pronounced ay-star).
A* proceeds in an almost identical fashion to Dijkstra’s search algo-rithm. The only difference is in the calculation of the costs of the nodes on
the search frontier. The adjusted cost,F, to the node when positioned on the
priority queue (the search frontier), is calculated as:
F = G+H (5.3)
where G is the cumulative cost to reach a node andHis the heuristic e... (查看原文)
1 有用 Icarus 2015-11-08 22:58:26
介绍AI入门的基本编程方法和设计方法,并且提到了实际工程实践中可以要做到的取舍;此书有作业可以方便去实践和修改。
0 有用 Z 2009-01-27 17:21:29
The best game AI book and code~!
0 有用 Maverick@Walden 2014-05-28 20:28:24
Now I'm pretty sure that every skill should be learned by doing the examples.
1 有用 Captain 2017-08-21 11:41:15
在读,内容浅显实际.不过基础章节steering behavior讲的太浅,实现也过于粗陋,不推荐看
0 有用 lesterzhao 2011-12-25 17:28:09
入门级,深度不高