Question: (8 points) Q1) Use recursion tree to solve: L(n)=L(n/2) + L(n/3) +L(n/6) +n Draw the tree and show your work. (12 points) Q2) use Master's

(8 points) Q1) Use recursion tree to solve: L(n)=L(n/2) + L(n/3) +L(n/6) +n Draw the tree and show your work. (12 points) Q2) use Master's theorem to solve below recursions (show your work): A. T(n)=5T(n/2) + 0 (na) B. T(n)=2T(n/4)+1 C. T(n)=2T(n/4)+m D. 2T(n/4)+n E. T(n)=2T(n/4)+n2 F. T(n)=2T(n/2)+n4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
