8. (6 marks) Applying the Master Theorem, determine the asymptotic complexity of algorithms with the following recurrenc
Posted: Tue Jul 12, 2022 8:21 am
8. (6 marks) Applying the Master Theorem, determine the asymptotic complexity of algorithms with the following recurrence relations. Show your work. i) T(n)=3T(n/2)+n ii) T(n)=4T(n/2)+n2 iii) T(n)=3T(n/3)+sqrt(n)