565 views
1 votes
1 votes
T(n) = T(n-1) + n^4

Please log in or register to answer this question.

Related questions

1 votes
1 votes
0 answers
1
PEKKA asked Dec 6, 2016
2,952 views
Solve the following Recurrence Equation using back substitution method T(n)= 2T(n/2)+log n​
1 votes
1 votes
2 answers
2
5 votes
5 votes
1 answer
3
3 votes
3 votes
1 answer
4
sumit_kumar asked Jun 25, 2017
3,154 views
what is time comlexity procedure for following recursive equation by substitution method:T(n)= T(n-1)+T(n-2) , if n>=2 =1 , if n=1; =0 , if n=0.