Skip to content
Related Articles
Open in App
Not now

Related Articles

GATE | Gate IT 2005 | Question 51

Improve Article
Save Article
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

Let T(n) be a function defined by the recurrence

T(n) = 2T(n/2) + √n for n ≥ 2 and
T(1) = 1

Which of the following statements is TRUE?

 
(A) T(n) = θ(log n)
(B) T(n) = θ(√n)
(C) T(n) = θ(n)
(D) T(n) = θ(n log n)


Answer: (C)

Explanation: n(logba) = n which is = n^(1-.5) = O(sqrt n)
then by applying case 1 of master method we get T(n) = Θ(n)

Please  refer https://www.geeksforgeeks.org/analysis-algorithm-set-4-master-method-solving-recurrences/ for more details.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!