ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the average case time complexity of binary search using recursion?
Correct Answer: B — O(logn)
T(n) = T(n/2) + 1, Using the divide and conquer master theorem.