166 views
1 votes
1 votes
How to solve the recurrence relation either by recursion tree or back substitution

T(n)=  O(1) ,  if n<=80

        = T(n/5)+T(7/10n +6) + O(n)   if n>80

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
1
3 votes
3 votes
2 answers
4
Diksha Aswal asked Jul 3, 2017
1,916 views
T(n) = T(n/3)+T(2n/3)+n What is the solution of Above Given recurrence relation?Give full method to solve this