Question: Question 3 1) Use the Master Theorem (2-version) to give tight bounds, or argue why it is not applicable a. T(n) = 4T(n/4) + n/4

Question 3 1) Use the Master Theorem (2-version) to give tight bounds, or argue why it is not applicable a. T(n) = 4T(n/4) + n/4 b. T(n) = 4T(n/4) + 0(1) c. T(n) - 8T(n/2)n! d. T(n)8T(n/2) +log n e. T(n)= 4T(n/2)-n 2.)Solve using iteration:T(n) -T(n-1) + 4n 3.)Solve using substitution: T(n) -2T(n-1) 4 4.) What can you say about the time complexity of an algorithm whose run-time is given by this recurrence T(n) = 4T(n) + O(log n)? 5) Which method might be most a Use it to give its solution. T(n)-Tn/4)T(3n/4) +cin
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
