1.

Which one of the following correctly determines the solution of the recurrence relation with T(1) = 1? T(n) = 2T(n/2) + Logn

A. Θ(n)
B. Θ(nLogn)
C. Θ(n*n)
D. Θ(log n)
Answer» B. Θ(nLogn)


Discussion

No Comment Found

Related MCQs