Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand Big-O notation, but I don't know how to calculate it for many functions. In particular, I've been trying to figure out the computational complexity of the naive version of the Fibonacci sequence:

int Fib(int n)
{
    if (n <= 1)
        return 1;
    else
        return Fib(n - 1) + Fib(n - 2);
}

What is the computational complexity of the Fibonacci sequence and how is it calculated?

share|improve this question
1  
Good answers here. – Greg Dec 11 '08 at 20:26
2  
See the matrix form section here: en.wikipedia.org/wiki/Fibonacci_number . by doing this matrix ^ n (in a clever way) you can compute Fib(n) in O(lg n). The trick is in doing the power function. Theres a very good lecture on iTunesU about this exact problem and how to solve in O(lg n). The course is intro to algorithms from MIT lecture 3 (its absolutley free so check it out if you're interested) – Aly Feb 11 '11 at 16:50

10 Answers

up vote 81 down vote accepted

You model the time function to calculate Fib(n) as sum of time to calculate Fib(n-1) plus the time to calculate Fib(n-2) plus the time to add them together (O(1)).

T(n<=1) = O(1)

T(n) = T(n-1) + T(n-2) + O(1)

You solve this recurrence relation (using generating functions, for instance) and you'll end up with the answer.

Alternatively, you can draw the recursion tree, which will have depth n and intuitively figure out that this function is asymptotically O(2n). You can then prove your conjecture by induction.

Base: n = 1 is obvious

Assume T(n-1) = O(2n-1), therefore

T(n) = T(n-1) + T(n-2) + O(1) which is equal to

T(n) = O(2n-1) + O(2n-2) + O(1) = O(2n)

However, as noted in a comment, this is not the tight bound. An interesting fact about this function is that the T(n) is asymptotically the same as the value of Fib(n) since both are defined as

f(n) = f(n-1) + f(n-2).

The leaves of the recursion tree will always return 1. The value of Fib(n) is sum of all values returned by the leaves in the recursion tree which is equal to the count of leaves. Since each leaf will take O(1) to compute, T(n) is equal to Fib(n) x O(1). Consequently, the tight bound for this function is the Fibonacci sequence itself (~θ(1.6n)). You can find out this tight bound by using generating functions as I'd mentioned above.

share|improve this answer
4  
Also Proof by induction. Nice. +1 – Andrew Rollings Dec 11 '08 at 20:38
Although the bound is not tight. – Captain Segfault Dec 11 '08 at 21:15
@Captain Segfault: Yeah. I clarified the answer. You'd get the tight bound using GF method as I had written above. – Mehrdad Afshari Dec 11 '08 at 21:36
Itake your StackOverflowException as a joke. The exponential time is perceivable quite easily with rather small values for n. – David Rodríguez - dribeas Dec 11 '08 at 23:08

Just ask yourself how many statements need to execute for F(n) to complete.

For F(1), the answer is 1 (the first part of the conditional).

For F(n), the answer is F(n-1) + F(n-2).

So what function satisfies these rules? Try a^n:

a^n == a^(n-1) + a^(n-2)

Divide through by a^(n-2):

a^2 == a + 1

Solve for a and you get (1+sqrt(5))/2, otherwise known as the golden ratio.

So it takes exponential time.

share|improve this answer
Proof by induction. Nice. +1 – Andrew Rollings Dec 11 '08 at 20:37

There's a very nice discussion of this specific problem over at MIT. On page 5, they make the point that, if you assume that an addition takes one computational unit, the time required to compute Fib(N) is very closely related to the result of Fib(N).

As a result, you can skip directly to the very close approximation of the Fibonacci series:

Fib(N) = (1/sqrt(5)) * 1.618^(N+1) (approximately)

and say, therefore, that the worst case performance of the naive algorithm is

O((1/sqrt(5)) * 1.618^(N+1)) = O(1.618^(N+1))

PS: There is a discussion of the closed form expression of the Nth Fibonacci number over at Wikipedia if you'd like more information.

share|improve this answer
Nice reference to the MIT stuff. – Charlie Martin Dec 13 '08 at 1:38

It is bounded on the lower end by 2^(n/2) and on the upper end by 2^n (as noted in other comments). And an interesting fact of that recursive implementation is that it has a tight asymptotic bound of Fib(n) itself. These facts can be summarized:

T(n) = Ω(2^(n/2))  (lower bound)
T(n) = O(2^n)   (upper bound)
T(n) = Θ(Fib(n)) (tight bound)

The tight bound can be reduced further using its closed form if you like.

share|improve this answer

Well, according to me to it is O(2^n) as in this function only recursion is taking the considerable time (divide and conquer). We see that, the above function will continue in a tree until the leaves are approaches when we reach to the level F(n-(n-1)) i.e. F(1). So, here when we jot down the time complexity encountered at each depth of tree, the summation series is:

1+2+4+.......(n-1)
= 1((2^n)-1)/(2-1)
=2^n -1

that is order of 2^n [ O(2^n) ].

share|improve this answer

This performs way better:

unsigned int Fib(unsigned int n)
{
    // first Fibonaci number is Fib(0)
    // second one is Fib(1) and so on

    // unsigned int m;  // m + current_n = original_n
    unsigned int a = 1; // Fib(m)
    unsigned int b = 0; // Fib(m-1)
    unsigned int c = 0; // Fib(m-2)

    while (n--)
    {
        c = b;
        b = a;
        a = b+c;
    }

    return a;
}
share|improve this answer
That doesn't explain how to calculate big O notation for the function. – Matt Ellen Apr 28 '10 at 20:43
@Matt Ellen: It's simple. This function is O(n), since the number of iterations of the while loop is equal to n, and there is no other loop or recursive call. (Proving 6*n + 4 is O(n) is trivial if you know the definition of the O notation.) – Eduardo León Apr 29 '10 at 2:52
Determining Big-O is entirely academic, unless you have an alternative implementation (and Big-O) to compare it to. Eduardo supplies the counterpoint here. – Jason Jul 26 '10 at 18:38
2  
I agree that this can be a much better way of implementing it, but the notion of Big-O comments on the algorithm used for a problem. For instance, the expected runtime of bogosort (en.wikipedia.org/wiki/Bogosort) is O(2^n), but there are other ways to sort a list more efficiently (for instance selection sort). I think Juliet is asking about the order of the algorithm she provided, which she calls the "naive version." – Oliver Sep 30 '10 at 21:05
@starghost: Agreed. Since her algorithm just adds 1s, the order of her algorithm is O(Fib(n)) itself. – Eduardo León Oct 1 '10 at 3:06
/*Dynamic arrays fibonacci */

    #include <stdio.h>
    #include <malloc.h>


    int main()
    {
        int *a,*b;
        int i;
        int r;
        int n=48;
        a=( int *)realloc(NULL,2*sizeof( int));
        a[0]=1;
        a[1]=2;
        // b=(int *)realloc(a,sizeof(int));
        for(i=2; i<n; i++)
        {
            r=i+1;
            b=(int *)realloc(a,r*sizeof(int));
            b[i]=b[i-1]+b[i-2];
            printf("\n %d--> %-10d",i,b[i-2]);
            a=(int *)realloc(b,r*sizeof(int));
        }
        free(b);
        return 0;
    }
share|improve this answer
+1 for the laugh. – blissfreak Feb 27 at 23:55

Problem 16.8 gives the outline for a really cool solution using linear algebra.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.