449 views
0 votes
0 votes

How to solve the following recurrence relation?

T(n) = T(n-6) + n2 , n>7

T(n) = 1 , n<= 7

Please log in or register to answer this question.

Related questions

1 votes
1 votes
1 answer
1
aditi19 asked Oct 27, 2018
834 views
how to compute time complexity of this kind of recurrence relation-T(n)=T(n/2)+T(n/4)+T(n/8)+n
2 votes
2 votes
1 answer
2
Manu Thakur asked Aug 18, 2017
1,394 views
Can you please solve this following question further?What will be the time complexity?