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

Related Articles

Algorithms | Analysis of Algorithms (Recurrences) | Question 2

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

What is the value of following recurrence.

T(n) = 5T(n/5) + \sqrt{n},
T(1) = 1,
T(0) = 0

(A) Theta (n)
(B) Theta (n^2)
(C) Theta (sqrt(n))
(D) Theta (nLogn)


Answer: (A)

Explanation: The given solution can be solved using Master Method. It falls in Case 1.


Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads