Algorithms | Analysis of Algorithms (Recurrences) | Question 4

Last Updated :
Discuss
Comments
Suppose T(n) = 2T(n/2) + n, T(0) = T(1) = 1 Which one of the following is false. ( GATE CS 2005)
a) T(n) = O(n^2)
b) T(n) = [Tex]\\theta[/Tex](nLogn)
c) T(n) = [Tex]\\Omega[/Tex](n^2)
d) T(n) = O(nLogn)
A
B
C
D
Share your thoughts in the comments