recategorized by
427 views
0 votes
0 votes
what is the recurrence relation for binary search and linear search?

please explain how to derive them.
recategorized by

1 Answer

Related questions

5 votes
5 votes
3 answers
1
sushmita asked Oct 4, 2018
2,161 views
$T(n)=\sqrt{n} T(\sqrt{n})+100n$Please solve this.
1 votes
1 votes
0 answers
2
srestha asked May 19, 2019
629 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
2 answers
3
srestha asked May 10, 2019
871 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,038 views
What is the time complexity of the following recurrence relation and step to derive the same$T(n) = T(\sqrt{n}) + log(logn)$