InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the greedy best first search?(a) Pure Heuristic Search(b) A*(c) B*(d) Both A* and B*This question was addressed to me in quiz.The doubt is from Graph Search topic in section Graph Search of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (a) Pure HEURISTIC Search Easiest EXPLANATION - Pure Heuristic Search is also called GREEDY best first search while A* and B* search algorithms are not greedy best first search. |
|