InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is an example of Best First Search algorithm?(a) A*(b) B*(c) C*(d) Both A* and B*I got this question by my school teacher while I was bunking the class.Origin of the question is Graph Search in chapter Graph Search of Data Structures & Algorithms II |
|
Answer» CORRECT answer is (d) Both A* and B* Explanation: In computer SCIENCE, A* algorithm is used in graph TRAVERSAL and path finding. It is a process of node finding in between a path. B* algorithm is used to FIND the LEAST cost path between the source node and the destination node. |
|