I am trying to find complexity of Fibonacci series using recursion tree. and concluded height of tree = O(n) worst case cost of each level = cn hence complexity should be = n*n=n^2 How come it is 2^n. I am new in finding complexity, please clear my doubt.
|
|
the complexity of a naive recursive fibonacci is indeed 2^n.
in each step you call bonus: the best implementation to fibonacci is actually a close formula, using the golden ratio:
|
|||||||||||
|
|
You are correct that the depth of the tree is O(n), but you are not doing O(n) work at each level. At each level, you do O(1) work per recursive call, but each recursive call then contributes two new recursive calls, one at the level below it and one at the level two below it. This means that as you get further and further down the recursion tree, the number of calls per level grows exponentially. Interestingly, you can actually establish the exact number of calls necessary to compute F(n) as 2F(n + 1) - 1, where F(n) is the nth Fibonacci number. We can prove this inductively. As a base case, to compute F(0) or F(1), we need to make exactly one call to the function, which terminates without making any new calls. Let's say that L(n) is the number of calls necessary to compute F(n). Then we have that
Now, for the inductive step, assume that for all n' < n, with n ≥ 2, that L(n') = 2F(n + 1) - 1. Then to compute F(n), we need to make 1 call to the initial function that computes F(n), which in turn fires off calls to F(n-2) and F(n-1). By the inductive hypothesis we know that F(n-1) and F(n-2) can be computed in L(n-1) and L(n-2) calls. Thus the total runtime is
Which completes the induction. At this point, you can use Binet's formula to show that
And thus L(n) = O(((1 + √5) / 2)n). If we use the convention that
We have that
And since φ < 2, this is O(2n). Interestingly, I've chosen the name L(n) for this series because this series is called the Leonardo numbers. In addition to its use here, it arises in the analysis of the smoothsort algorithm. Hope this helps! |
|||||||||
|
|
Look at it like this. Assume the complexity of calculating
which has complexity
We have shown by induction that the claim that calculating |
|||||||||||||
|
|
The complexity of Fibonacci series is O(F(k)), where F(k) is the kth Fibonacci number. This can be proved by induction. It is trivial for based case. And assume for all k<=n, the complexity of computing F(k) is c*F(k) + o(F(k)), then for k = n+1, the complexity of computing F(n+1) is c*F(n) + o(F(n)) + c*F(n-1) + o(F(n-1)) = c*(F(n) + F(n-1)) + o(F(n)) + o(F(n-1)) = O(F(n+1)). |
|||||||||||
|