A* algorithm vs uninformed search -


in case a* algorithm becomes same uninformed searching algorithm.

a* search algorithm decays dijkstra's algorithm admissible heuristic function h(v) = 0 v, since in case f(v) = g(v) + h(v) = g(v) + 0 = g(v), , chose best first. pretty equivalent dijkstra's algorithm.

for unweighted graph, dijsktra's algorithm variant of bfs, can (a*) decays bfs in unweighted graphs h(v) = 0.


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -