Use a recursion tree to determine a good asymptotic upper bound on the recurrence
$T(n)=3T(\left \lfloor n / 2 \right \rfloor) + n$ . Use the substitution method to verify your answer.
Use a recursion tree to determine a good asymptotic upper bound on the recurrence
$T(n)=T(n/2)+n^2$ . Use the substitution method to verify your answer.
Use a recursion tree to determine a good asymptotic upper bound on the recurrence
$T(n)=4T(n/2+2)+n$ . Use the substitution method to verify your answer.
Use a recursion tree to determine a good asymptotic upper bound on the recurrence
$T(n)=2T(n-1)+1$ . Use the substitution method to verify your answer.
Use a recursion tree to determine a good asymptotic upper bound on the recurrence
$T(n)=T(n-1)+T(n/2)+n$ . Use the substitution method to verify your answer.
Argue that the solution to the recurrence
$T(n)=T(n/3)+T(2n/3)+cn$ , where$c$ is a constant, is$\Omega(n \lg n)$ by appealing to a recursion tree.
Shortest path is
Draw the recursion tree for
$T(n)=4T(\left \lfloor n / 2 \rfloor \right) + cn$ , where$c$ is a constant, and provide a tight asymptotic bound on its solution. Verify your bound by the substitution method.
Use a recursion tree to give an asymptotically tight solution to the recurrence
$T(n) = T(n-a) + T(a) + cn$ , where$a \ge 1$ and $c > 0 $ are constants.
Use a recursion tree to give an asymptotically tight solution to the recurrence
$T(n)=T(\alpha n)+T((1-\alpha)n)+cn$ , where$\alpha$ is a constant in the range$0 < \alpha < 1$ and$c > 0$ is also a constant.