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

This is the expected output:

alt text

We are to make a C program that calculates for the Fibonacci Sequence. We're only allowed up to 3 variables and we're NOT allowed to use loops. And I don't know what to do and how to start.

I hope you guys can help me. :/

share|improve this question
what have you tried? – Taryn East Mar 15 at 3:37

7 Answers

On the assumption that you are using 32 bit unsigned integers, the 48th Fibonacci number will cause an integer overflow. That makes it perfectly feasible to use a lookup table with all the values precalculated (by hand).

share|improve this answer
2  
+1 for another solution (only said in comment). To show a possible code would be interesting to stress how the recursive solution, even though recursion may sound alien to him, is the shortest and more intuitive. ... (instead of calc by hand, he could use this the link comes from wikipedia) – ShinTakezou Jul 2 '10 at 13:50
+1 for pointing out the incredible finitude of the problem and thus the optimal solution. A 192 byte table is probably even smaller than the code would be...not to mention a damn lot faster. – R.. Jul 3 '10 at 17:27
@R: yes, and if 64 bit integers are used, there are still only 94 numbers before you get to overflow. – JeremyP Jul 4 '10 at 9:02

Use recursion:

alt text


Version in C/C++ language:

int fib(int a)
{
    if (a == 0) return 0;
    if (a == 1) return 1;
    return fib(a - 1) + fib(a - 2);
}

Apply suggestion from this answer comments:

Version in C language:

/*
 * -1 is a error handler
 */
int fib(int a)
{
    if (a < 0 || a > 47) return -1;
    if (a == 0) return 0;
    if (a == 1) return 1;
    return fib(a - 1) + fib(a - 2);
}

Version in C++ language:

int fib(int a)
{
    if (a < 0) throw new std::out_of_range("Fibonacci is not defined for negative sign values.");
    if (a > 47) throw new std::overflow_error("Fibonacci for this value was overflow the integer.");
    if (a == 0) return 0;
    if (a == 1) return 1;
    return fib(a - 1) + fib(a - 2);
}
share|improve this answer

If loops and recursion are not allowed, pick up fibonacci sequence definition and do it by hand... it is ridicolously boring and uninteresting but it is the most straightforward solution in those restrictions.

a = 0; // 0
b = 1; // 1
a = a + b; // 1
b = a + b; // 2
a = a + b; // 3
b = a + b; // 5

and so on: b holds the n-th and a the (n-1)-th number. (Copy-paste a = a+b; b = a+b; how many times you need...) Copy-pasting fragments of code is allowed?

... (edit) ...

Of course this answer just shows how ridicolous stuffs can get if we put too much rescrictions. If you don't know recursion, you have to learn it, definitively. Or stick into fine mathematics (as other answer shows), but recursion is a powerful tool programmers should know anyway, and the recursive approach is more intuitive than using mathemathical "tricks".

share|improve this answer
6  
LAME...and we probably don't want to give rob2k8 even an inkling of an idea that this sort if thing is even REMOTELY acceptable. – CheesePls Jul 2 '10 at 12:40
Yeah, it is not... it is just the extreme consequence of prohibiting loops and recursions (since he doesn't know it; so the answer show clearly how silly would it be without even recursion!). The answer is ironically hilarious, and I am sorry to have been forced to write it explicitly; I thought that my final "Copy-pasting fragments of code is allowed?" would have been enough to understand that the answer must not be taken seriously, as you (and your comment upvoter) did. – ShinTakezou Jul 2 '10 at 13:00
... added details, just in case the OP could become confused and think that the solution is acceptable. – ShinTakezou Jul 2 '10 at 13:09

use http://www.research.att.com/~njas/sequences/b000045.txt as a data file ;)

share|improve this answer

I would suspect that if you can't use loops that your professor/teacher intended you to use recursion. Otherwise it's simply a matter of looking up the proper formula, which makes no sense in a programming class.

If recursion is allowed I highly recomend reading this tutorial (assuming you aren't familiar with it).

share|improve this answer

http://mathworld.wolfram.com/BinetsFibonacciNumberFormula.html

which you can copy here

http://cboard.cprogramming.com/cplusplus-programming/108426-binets-formula.html

long double f(short N) {
    double phi = (1+pow(5,0.5))/2;
    return ceil((pow(phi,N) - pow(1-phi,N))/pow(5,0.5));
}

of course, it's just math, but it does calculate fib(N) without recursion and loops.. you still need a way to print all the values for fib(1)..fib(n) though

what your teacher wants is probably recursion.

share|improve this answer
2  
this solution stop working from small numbers of fibonacci because floting point variables dont have good precision. And this solution is MPC solution of solve normal recursion. – Svisstack Jul 2 '10 at 12:31
2  
integers don't have arbitrary precision either, at least in C. i just wanted to point out that the function does not require an iteration-recursion /per se/ – Marco Mariani Jul 2 '10 at 12:40
1  
@Svisstack -- this is no problem -- just write a 256 bit (or so) floating point library and you are good to go. – Hogan Jul 2 '10 at 13:15
2  
let's use GMP then, instead of rewriting it from scratch! – ShinTakezou Jul 2 '10 at 13:36
2  
@Svisstack : Why would it be slow? Besides, it is almost sure to be faster than any kind of loop or recursion. Of course it depends on your pow() function and your ceil() function, but as written this is O(1) whereas the best you can do with a loop or recursion is O(N). – Hogan Jul 2 '10 at 16:54
show 3 more comments

Since loop and recursion aren't allowed,

int fib(int n) {
   int fk1 = 0, fk0 = 1;
main_sub3:
   fk1 += fk0;
   fk0 = fk1 - fk0;
   if (n > 0) {
     -- n;
     goto main_sub3;

*raptor*

share|improve this answer
10  
Isn't that a loop? – izb Jul 2 '10 at 13:29
5  
+1 For the Raptors :P – Ivo Wetzel Jul 2 '10 at 13:32
1  
ewwww goto. But, there are raptors. – CheesePls Jul 2 '10 at 13:39
1  
for, while, do-while, whatever... are just not-primitive looping mechanisms. A goto is the "base" of every loop mechanism (o well, not of all indeed and in a broad sense recursion could be considered a loop mechanism ... but this would be too much :D) – ShinTakezou Jul 2 '10 at 13:39
Recursion is a boomerang!!! Or the hookshot! – maxwellb Jul 2 '10 at 15:45
show 2 more comments

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.