さまざまな一般的な検索アルゴリズムが互いにどのように関連しているかをよりよく理解したいと思います。階層図や簡潔なテキストによる説明など、リソースを知っている人はいますか?
私が意味することの小さな例は次のとおりです。
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
等
ありがとう!