InterviewSolution
Saved Bookmarks
| 1. |
The solution of the recurrence relationT(n) ≤ { θ(1) if n ≤ 80T(n) ≤ { T(n / s) + T((7n / 10) + 6) + O(n) if n ≥ 80is :(A) O(lg n)(B) O(n)(C) O(n lg n)(D) None of the above |
| Answer» | |