161 views
0 votes
0 votes
Consider the following recursion

T(n, c) = $\Theta$$(n)$ for $ c <= 2 $

T(c, n) = $\Theta$$(n)$ for $ c <=2$

T(n, n) = $\Theta$$(n) + T(n, n/2)$

Which of the following is correct asymptotic complexity for above recurrence relation?

Please log in or register to answer this question.