vote up 4 vote down star

I'm having a hard time understanding why

#include <iostream>

using namespace std;

int fib(int x) {
    if (x == 1) {
        return 1;
    } else {
        return fib(x-1)+fib(x-2);
    }
}

int main() {
    cout << fib(5) << endl;
}

results in a segmentation fault. Once x gets down to 1 shouldn't it eventually return?

flag

8  
The time complexity of this algorithm is O(2^n). It is very bad. For exapmle, f(30) calculation required about 1 billion operations. Use the dynamic programming in your case. – Alexey Malistov Oct 5 at 8:07
3  
@Alexey, I'm sure the OP just wants to learn. If performance is an issue, Meta-programming is really the way to go. – LiraNuna Oct 5 at 8:11
2  
@Alexey Malistov: No, use the iterative approach instead. – Gumbo Oct 5 at 8:13
2  
@Gumbo: No, use the force Luke! – Spoike Oct 5 at 10:17
The segmentation fault is the symptom of a stack overflow. – starblue Oct 5 at 10:20
show 2 more comments

5 Answers

vote up 48 vote down check

When x==2 you call fib(1) and fib(0):

return fib(2-1)+fib(2-2);

Consider what will happen when fib(0) is evaluated...

link|flag
14  
+1 for not giving the answer directly but indicating where the problem is. Much better for someone who is learning. – Xetius Oct 5 at 8:41
+1, I use the same technique with my oldest kid (9) and it stimulates his ability to solve problems. – Gamecat Oct 5 at 11:52
vote up 0 vote down

"The OP never asked for another solution to the fibonacci generation problem, he just asked for some help to debug his code".

Personally I should also like a better algorithm.

See exercise 7.11 and 9.4 : http://www.oopschool.com/books/CPB2010.pdf

Best regards Kjell Bleivik

link|flag
vote up 1 vote down

So I was checking out this meta-programming thing that LiraNuna was talking about in the comments of this answer. Taking in the syntax examples, the Fibonnaci can be calculated in compile time with the following:

template <int N>
struct Fibonnaci 
{
    enum { value = Fibonnaci<N - 1>::value + Fibonnaci<N - 2>::value };
};

template <>
struct Fibonnaci<1> 
{
    enum { value = 1 };
};

template <>
struct Fibonnaci<0> 
{
    enum { value = 0 };
};

// Fibonnaci<4>::value == 0+1+1+2 = 3
// Fibonnaci<0>::value == 0

Haven't checked if this compiles and works though.

link|flag
2  
The OP never asked for another solution to the fibonacci generation problem, he just asked for some help to debug his code. – Luc Touraille Oct 5 at 9:57
1  
@Luc Touraille: Since when has SO stopped other users from derailing into other solutions? ;) – Spoike Oct 5 at 10:14
It does work. I checked with gcc :-), but only for lower numbers, fails to compile with values over 47 (or so) and overflows at much smaller values. Still very cool though. – Chris Huang-Leaver Oct 5 at 13:05
@Chris Huang-Leaver: Sweet! – Spoike Oct 7 at 7:49
vote up 2 vote down

Why not use iterative algorithm?

int fib(int n)
{
    int a = 1, b = 1;
    for (int i = 3; i <= n; i++) {
        int c = a + b;
        a = b;
        b = c;
    }           
    return b;
}
link|flag
That’s the best approach. But he asked for a recursive solution. – Gumbo Oct 5 at 8:15
@Gumbo, the 'best' approach would be meta-programming, no doubt. – LiraNuna Oct 5 at 8:16
@LiraNuna: That’s not meta-programming. – Gumbo Oct 5 at 8:18
3  
A metaprogramming approach would basically boil down to a recursive solution...the calculation would simply be transfered from runtime to compile-time. Claiming that this would be a better approach is non-sense because we don't know the OP requirements: if he just needs to run the program once, having a huge compile time and a short runtime is not better than having a short compile time and a long runtime. Similarly, if he needs to take as input the 'n' parameter, metaprogramming is not usable (except if you explicitely put an upper bound to this number). Moreover, compilers have a limited... – Luc Touraille Oct 5 at 9:51
1  
...recursion depth, so this can be an issue. To sum up, metaprogramming is a really powerful tool, but should be wisely used, only when it truly fits the problem. – Luc Touraille Oct 5 at 9:54
show 3 more comments
vote up 10 vote down

The reason is because Fibonacci sequence starts with two known entities, 0 and 1. Your code only checks for one of them (being one).

Change your code to

int fib(int x) {
    if (x == 0)
        return 0;

    if (x == 1)
        return 1;

    return fib(x-1)+fib(x-2);
}

To include both 0 and 1.

link|flag
Does not the series starts from 1,1? – Aviator Oct 5 at 8:58
That's not what I've been taught, and not what Wikipedia suggests - en.wikipedia.org/wiki/Fibonacci_number – LiraNuna Oct 5 at 9:28
@Aviator: Depends on how you define Fibonacci numbers. ;) – Spoike Oct 5 at 9:34
@Spoike, @LiraNuna: Thanks :) Got it now. Have seen some implementations starting with 1,1,2 etc.,. So got confused! – Aviator Oct 5 at 11:07

Your Answer

Get an OpenID
or

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