Heuristic Search Techniques 1636978392317
Heuristic Search Techniques 1636978392317
[A, B] [S]
[A] [S, B]
[E, F, A] [S, B]
[E, A] [S, B, F]
[I, G, E, A] [S, B, F]
[I, E, A] [S, B, F, G]
Disadvantages:
• It can behave as an unguided depth-first search in
the worst case scenario.
• It can get stuck in a loop as DFS.
• This algorithm is not optimal.
• Time Complexity: The worst case time complexity of
Greedy best first search is O(bd).
Disadvantages:
• It does not always produce the shortest path as it
mostly based on heuristics and approximation.
• Has some complexity issues.
• It is not practical for various large-scale problems
because it requires large memory requirement.
• Complete: A* algorithm is complete as long as:
• Branching factor is finite.
• Cost at every action is fixed.