First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

Given the following recurrence relation, find its complexity using recursion tree method.

T(n)=c ; if n=1
=2* T(n/2) +cn ;otherwise

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...