InterviewSolution
Saved Bookmarks
| 1. |
Backtracking algorithm is faster than the brute force technique(a) true(b) falseThis question was addressed to me in a job interview.The origin of the question is Backtracking topic in section Backtracking of Data Structures & Algorithms II |
|
Answer» RIGHT answer is (a) true The EXPLANATION is: BACKTRACKING is faster than brute force approach since it can remove a LARGE set of ANSWERS in one test. |
|