InterviewSolution
Saved Bookmarks
| 1. |
Which of the following algorithm can be used to solve the Hamiltonian path problem efficiently?(a) branch and bound(b) iterative improvement(c) divide and conquer(d) greedy algorithm |
|
Answer» Correct answer is (a) branch and bound For explanation: The Hamiltonian path problem can be solved efficiently using branch and bound approach. It can also be solved using a backtracking approach. |
|