InterviewSolution
Saved Bookmarks
| 1. |
Interpolation search is an in place algorithm.(a) true(b) falseThe question was asked in an internship interview.I need to ask this question from Searching in portion Searching of Data Structures & Algorithms II |
|
Answer» RIGHT CHOICE is (a) true The best EXPLANATION: INTERPOLATION search has an auxiliary space complexity of O(1). So it qualifies as an in place algorithm. |
|