a)Solve the following recurrence relation
T(n) = 7T(n/2) + cn^2.
Solve the following recurrence relation T(n) = 7T(n/2) + cn^2.
b)Show how quick sort sorts the following sequence of keys 65, 70, 75, 80, 85, 60, 55, 50, 45. Solve the recurrence relation of quick sort using substitution method.
Show how quick sort sorts the following sequence of keys 65, 70, 75, 80, 85, 60, 55, 50, 45. Solve the recurrence relation of quick sort using substitution method.