Page 1 of 1

T(n)= 3T(n/2) + 2n^2 How to find the running time or time complexity of this recurrence using the recursive tree techniq

Posted: Mon Jun 06, 2022 1:30 pm
by answerhappygod
T(n)= 3T(n/2) + 2n^2
How to find the running time or time complexity of this
recurrence using the recursive tree technique?