Recent questions tagged recurrence-relation

1 votes
1 answer
64
1 votes
2 answers
65
T(K)=5T(K-1)-4T(K-2) with initial condition T(0)=2 and T(1)=3 determine T(10).using recursion i got answer,but can anyone explain above method.
1 votes
1 answer
66
0 votes
1 answer
67
1 votes
1 answer
68
1 votes
1 answer
70
T(n)=T(n/5)+T(7n/10)+ana: constantwhat will be the time complexity of the above recurrence relation??Please share the approach for this kind of recurrence relation
0 votes
1 answer
71
T(n)= T(n/3)+T(n/4)+5n , T(1)=c. Find solution using tree method.
0 votes
1 answer
72
What will be the recurrence relation for max heapify. Please explain with example.
0 votes
1 answer
73
which formula to use in master theorm