321 views
0 votes
0 votes
I need to find the tight bound of the Fibonacci sequence in dynamic programming (using theta). I only know the bound using big O is O(n). Any idea how to do it?

Please log in or register to answer this question.

Related questions

1 votes
1 votes
1 answer
1
gatecse asked Dec 9, 2020
668 views
Which of the following is a correct time complexity to solve the $0/1$ knapsack problem where $n$ and $w$ represents the number of items and capacity of knapsack respecti...
0 votes
0 votes
1 answer
2
shipra tressa asked Jul 17, 2018
1,497 views
Given a sequence of n real numbers a1,a2,a3...an then to find contiguous subsequence ai,ai+1,ai+2....aj. Such that it's sum is maximum. How much time the above problem wi...