Algorithms | Analysis of Algorithms (Recurrences) | Question 11

Last Updated :
Discuss
Comments
Consider the following recurrence T(n) = 3T(n/5) + lgn * lgn What is the value of T(n)?
(A) [Tex]\\Theta(n ^ \\log_5{3})[/Tex]
(B) [Tex]\\Theta(n ^ \\log_3{5})[/Tex]
(c) [Tex]\\Theta(n Log n )[/Tex]
(D) [Tex]\\Theta( Log n )[/Tex]
A
B
C
D
Share your thoughts in the comments