Master Method |
Document last modified: |
Use the Master Method to asymptotically bound T(n)
T(n) can be asymptotically bounded for 3 cases as follows:
|
T(n) = 5T(n/2) + Θ(n2)
log2 5 ≈ 2.32
T(n) = 2T(n/2) + n
T(n) = 5T(n/2) + Θ(n3)
log2 5 ≈ 2.32