Algorithms | Analysis of Algorithms (Recurrences) | Question 2

Last Updated :
Discuss
Comments
What is the value of following recurrence. T(n) = 5T(n/5) + [Tex]\\sqrt{n}[/Tex], T(1) = 1, T(0) = 0
Theta (n)
Theta (n^2)
Theta (sqrt(n))
Theta (nLogn)
Share your thoughts in the comments