InterviewSolution
Saved Bookmarks
| 1. |
Let T(n) be the function defined by T(1)= 1, T(n)= 2T (⌊n/2⌋) +√n for n≥2. Which of the following statement(s) is true?a. T(n) = O(√n)b. T(n) = O(n)c. T(n) = O(log n)d. None of the above(A) a(B) b(C) c(D) d |
| Answer» | |