retagged by
311 views
0 votes
0 votes

 

T(n)=4T(√n)+n

How can we solve it using master theorem using subsitution and renaming.

retagged by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
Verma Ashish asked Sep 19, 2018
748 views
How to solve the given recurrence relation using master's theorem?T(n)=T(${n^{1/2}}$)+n
0 votes
0 votes
0 answers
2
hitendra singh asked Aug 8, 2018
770 views
consider the following c program AA(n){ if(n<=1) return (n2+n+1);else return ( 5A(n/2)+ 3A(n/2)+n2}find time complexity T(n)=?
0 votes
0 votes
1 answer
3
Venkat Sai asked Nov 3, 2017
359 views
can masters theorem be used when base condition is given in a recurrence ?can we directly apply masters theorem to any recurrence ?
0 votes
0 votes
0 answers
4
gateexplore asked Oct 25, 2023
130 views
It is always true that Recursive code is easier to debug?? If yes then why?? please give full explanation.