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)
This question is part of this quiz :
Top MCQs on Complexity Analysis using Recurrence Relations with Answers