In: Computer Science
Answer : Given data
A. T(n) = 3T(n/2) + n
Recurssion Tree method:
Upper Bound for the above T(n) = O().
Substitution method:
B. T(n) = T(n/2) + n2
Recurssion Tree method:
Upper Bound for the above T(n) = O(n2).
__________________THE END__________________