In recursion, what is ‘recursive case’, and what is ‘base case’.
When the subproblems are large enough to solve recursively, we call that the ‘recursive case’. Once the subproblems become small enough that we no longer recurse, we say that is ‘base case’.
What are the methods for obtaining asymptotic Big Theta or Big O bounds on the divide-and-conquer solutions?
Name few examples of problems which can be solved using divide-and-conquer approach.