InterviewSolution
Saved Bookmarks
| 1. |
We can solve any recurrence by using Master’s theorem.(a) true(b) falseThis question was posed to me in an international level competition.My question is based upon Masters theorem topic in section Recursion of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (b) false Explanation: No we cannot solve all the RECURRENCES by only USING master’s THEOREM. We can solve only those which fall under the three cases PRESCRIBED in the theorem. |
|