0
9.2kviews
Compare following informed searching algorithms based on performance measure with justification: Complete, Optimal, Time Complexity and Space Complexity.

(i) Greedy Best First.

(ii) A*

(iii) Recursive Best-First (RBFS)

1 Answer
3
453views

Greedy Best First:

Greedy best-first search expands the nodes that appears to be closest to the goal.

enter image description here

A*:

A* Algorithm avoid expanding paths that are already expansive.

enter image description here

Recursive Best-First (RBFS):

RBFS keeps the track of Evaluation Value of the best alternative path available.

enter image description here

Please log in to add an answer.