

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following recurrence relation.\(T(n) = \left\{ {\begin{array}{*{20}{c}} {T(n/2) + T(2n/5) + 7n \ \ \ if\ n > 0}\\ {1\ \ \ \ \ \ \ if\ n = 0} \end{array}} \right.\)Which one of the following option is correct? |
A. | T(n) = Θ(n log n) |
B. | T(n) = Θ(n5/2) |
C. | T(n) = Θ((log n)5/2) |
D. | T(n) = Θ(n) |
Answer» E. | |