350 views
0 votes
0 votes
Which of the following methods enlisted can be termed as best and appropriate for solving recurrence relation?

1)Substitution Method

2)Recurrence Tree

3)Master's Theorem

Please log in or register to answer this question.

Related questions

1 votes
1 votes
0 answers
1
srestha asked May 19, 2019
639 views
Let $A(n)$ denotes the number of $n$ bit binary strings which have no pair of consecutive $1’s.$ what will be recurrence relation for it and what will be it’s Time Co...
1 votes
1 votes
1 answer
2
1 votes
1 votes
2 answers
3
srestha asked May 10, 2019
892 views
What is the solution of recurrence relation$T\left ( n \right )=T\left ( n-1 \right )+n$
1 votes
1 votes
1 answer
4
VikramRB asked Jan 20, 2019
1,050 views
What is the time complexity of the following recurrence relation and step to derive the same$T(n) = T(\sqrt{n}) + log(logn)$