Can you please help me to find out time complexity of give recurrence equation -
A(m,n) = n+1 if m=0
= A(m-1,1) if n = 0
= A(m-1,A(m,n-1)) otherwise
and also
T(n) =4T(n/2)+n^2. when n>1
= 1. when n=1
Please help I dont know how to solve this