我想更好地了解各种常见的搜索算法是如何相互关联的。有谁知道资源,例如层次图或对此的简明文字描述?
我的意思的一个小例子是:
A* Search
-> Uniform-cost is a variant of A* where the heuristic is a constant function
-> Dijkstra's is a variant of uniform-cost search with no goal
-> Breadth-first search is a variant of A* where all step costs are +ve and identical
等等
谢谢!