InterviewSolution
Saved Bookmarks
| 1. |
The problem of finding a list of integers in a given specific range that meets certain conditions is called?(a) Subset sum problem(b) Constraint satisfaction problem(c) Hamiltonian circuit problem(d) Travelling salesman problemThe question was posed to me during an interview.I'm obligated to ask this question of Backtracking in chapter Backtracking of Data Structures & Algorithms II |
|
Answer» RIGHT CHOICE is (b) Constraint satisfaction PROBLEM For explanation: Constraint satisfaction problem is the problem of finding a list of integers under given constraints. Constraint satisfaction problem is SOLVED USING a backtracking approach. |
|