InterviewSolution
Saved Bookmarks
| 1. |
What is the value of following recurrence.T(n) = T(n/4) + T(n/2) + cn2T(1) = cT(0) = 0Where c is a positive constant(A) O(n3)(B) O(n2)(C) O(n2 Logn)(D) O(nLogn) |
| Answer» None | |