solve the recurrence eqn(time complexity) with detailed answer
a) T(n)=2T(n/2)+√n, n>=2
T(1)=1
b) T(n)= mT(n/2)+an^2
T(1)=1
b) T(n)= mT(n/2)+an^2
0