Skip to content
Related Articles
Open in App
Not now

Related Articles

ISRO | ISRO CS 2017 – May | Question 14

Improve Article
Save Article
Like Article
  • Last Updated : 20 Mar, 2018
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
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!