Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

ISRO | ISRO CS 2017 – May | Question 14

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The recurrence relation that arises in relation with the complexity of binary search is:
(A) T(n) = 2T(n/ 2) + k , where k is constant
(B) T(n) = T(n / 2) + k , where k is constant
(C) T(n) = T(n / 2) + log n
(D) T(n) = T(n / 2) + n


Answer: (B)

Explanation: Binary Search is a linear searching algorithm and takes O(log n) when array is sorted. Refer: Binary Search
T(n) = T(n / 2) + k , where k is constant produces a complexity of O(log n)

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 20 Mar, 2018
Like Article
Save Article
Similar Reads