Algorithms | Analysis of Algorithms (Recurrences) | Question 1

Last Updated :
Discuss
Comments

What is the value of following recurrence.

T(n) = T(n/4) + T(n/2) + cn2
T(1) = c
T(0) = 0

Where c is a positive constant

O(n3)

O(n2)

O(n2 Logn)

O(nLogn)

Share your thoughts in the comments