Back to the 2023 paper

Module 1: Introduction

20235m

Apply the Master Theorem to determine the time complexity of the following recurrence relations.
(i) T(n)=4T(n/2)+n3T(n) = 4T(n/2) + n^3
(ii) T(n)=T(n/2)+2nT(n) = T(n/2) + 2^n

Similar questions