vote up 11 vote down star
3

Best, most creative, most clever, fastest, smallest, written in weirdest language, etc etc.

For those not familiar with this staple of programming exam question / interview question, check this out:

Fibonacci Sequence at Wikipedia

The question would be, write a simple program which will spit out the first n digits of the Fibonacci sequence.

So, if n == 12, we produce:

0 1 1 2 3 5 8 13 21 34 55 89 144

Your implementation becomes more interesting when you set n to larger values. How long does it take your implementation to return a 25 digit sequence? How about 100?

flag

53% accept rate
I took the Python post down, since I realized that it didn't produce the list, just the end result, and I don't have time to modify it. – Lance Roberts Nov 11 '08 at 0:30

22 Answers

vote up 0 vote down
10 INPUT "Terms to display: ", N
20 GOSUB 9000
30 END
9000 A = 0
9010 B = 1
9020 PRINT A
9030 IF N > 0 THEN PRINT B ELSE RETURN
9040 IF N < 2 THEN RETURN
9050 FOR I = 2 TO N
9060 C = A + B : PRINT C
9070 A =  B : B = C
9080 NEXT I
9090 RETURN

Written for (my memory of) the GW-BASIC of my youth; runs as written on bwBASIC.

link|flag
vote up 0 vote down

Here, you can have the Fibonacci algorithm in different languages (sorry, the comments in the page are in french).

link|flag
vote up 0 vote down

Oddly few of these answers take advantage of the question: how to compute the first N Fibonacci numbers. Since Fib (n) = Fib(n-1) + Fib(n-2), the obvious technique is to store Fib(n) in array and compute the next Fib number from the array, computing the first N values in O(N) time with a small constant factor. Since I like odd languages, here it is coded in vanilla PARLANSE (a parallel language for which we aren't using the parallelism in this case):

[answer (array natural 0 dynamic)]

(define FibSeq
   (action (procedure [N natural])
      (;;  (resize answer 0 N)
           (= answer:0 0)
           (= answer:1 1)
           (do [n natural] 2 N 1
               (= answer:n (+ answer:(-- n)  answer(- n 2))
           )do
      );;
   )action
)define

Since PARLANSE and many compiled-to-machine-code languages (such as C) have machine-sized values, this only works for Fib(n)<2^32 (or whatever your machine word size limits are), but produces "new" results with ~~ 10 machine instructions per result.

If you need Fib(n) > machine word size, you need to go to infinite precision arithmetic (in any of the langauges that can do that) and the cost goes up several orders of magnitude.

The Python memoized version has the same basic idea, but IMHO this seems easier to read.

link|flag
vote up 0 vote down

In Scala. Similar to the Haskell infinite list approach, but not quite as concise:

val fib: Stream[Int] = 0 :: 1 :: fib.zipWith(fib.tail) { _ + _ }

Note that this is slightly cheating since I assume you have the following implicit conversion in scope:

class StreamSyntax[A](str: =>Stream[A]) {
  def ::(hd: A) = Stream.cons(hd, str)

  def zipWith[B, C](that: Stream[B])(f: (A, B)=>C) = {
    str zip that map { case (x, y) => f(x, y) }
  }
}

implicit def convertSyntax[A](str: =>Stream[A]) = new StreamSyntax(str)
link|flag
vote up 1 vote down

Python with memoization:

class memoize:
  # class as decorator
  def __init__(self, function):
    self.function = function
    self.memoized = {}

  def __call__(self, *args):
    try:
      return self.memoized[args]
    except KeyError:
      self.memoized[args] = self.function(*args)
      return self.memoized[args]

@memoize
def fibonacci_memoized(n):
  if n in (0, 1): return n
  return fibonacci_memoized(n - 1) + fibonacci_memoized(n - 2)

Let's compare:

Beginning trial for fibonacci_memoized(30).
fibonacci_memoized(30) = 832040 in 0.000516s.

Beginning trial for fibonacci(30).
fibonacci(30) = 832040 in 1.147118s.

The memoized function is over 2223 times faster.

See http://avinashv.net/2008/04/python-decorators-syntactic-sugar/ for details.

fibonacci(332): 1082459262056433063877940200966638133809015267665311237542082678938909 in 0.009884s

link|flag
vote up 0 vote down

This is your brain:

int fib(n)
{
  if (n<2) return 1;
  return fib(n-1) + fib(n-2);
}

This is your brain on basic:

int s[999999];
int fib(int i)
{
_1: int t=0; s[t++] = i; s[t++] = 0; s[t] = 0;
_10: if (s[t-2] < 2) { s[t-2] = 1; t-=3; }
_20: if (t < 0) return s[0];
_30: if (s[t] == 1) goto _60;
_40: if (s[t] == 2) goto _70;
_50: s[t++]++; s[t++]=s[t-3]-1; s[t++]=0; s[t]=0; goto _10;
_60: s[t-1]=s[t+1]; s[t++]++; s[t++]=s[t-3]-2; s[t++]=0; s[t]=0; goto _10;
_70: s[t-2]=s[t-1]+s[t+1]; t-=3; goto _20;
}

Any questions?

link|flag
1  
Thankyou, now I see why brainfuck was invented; to be more readable. – Jim Burger Jun 1 at 3:39
vote up 2 vote down

Esoteric! And surprisingly fast.

>++++++++++>+>+[
    [+++++[>++++++++<-]>.<++++++[>--------<-]+<<<]>.>>[
        [-]<[>+<-]>>[<<+>+>-]<[>+<-[>+<-[>+<-[>+<-[>+<-[>+<-
            [>+<-[>+<-[>+<-[>[-]>+>+<<<-[>+<-]]]]]]]]]]]+>>>
    ]<<<
]

// This program doesn't terminate; you will have to kill it.
// Daniel B Cristofani (cristofdathevanetdotcom)
// http://www.hevanet.com/cristofd/brainfuck/
link|flag
This is more of an art project than it is a code project. I like it. – Sneakyness Aug 14 at 8:52
vote up 0 vote down

Powershell using a pipe

0..20 | %{ $i=0;$j=1} { $o = $i+$j; $i=$j; $j=$o; $o}

link|flag
er, you'd have to put 0..N if you wanted N of them... You didn't think I wrote a function, did you? – Knox Nov 11 '08 at 2:56
vote up 5 vote down

Well, here's a Python implementation using a generator. The use of range and zip in the last line is the obligatory obfuscation :p

>>> def fib():
...     x, y = 1, 1
...     while True:
...         yield x
...         x, y = y, x + y
...
>>> [x for _, x in zip(range(12), fib())]
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144]
link|flag
vote up 3 vote down

compile time Meta in D

template fib(uint i)
{
  static if(i == 0)
    const uint fib = 0;
  else static if(i == 1)
    const uint fib = 1;
  else
    const uint fib = fib!(i-1) + fib!(i-2);
}
link|flag
vote up 10 vote down

How 'bout meta-programming?

template<int N> struct fibonacci
{
    static const int value = fibonacci<N - 1>::value + fibonacci<N - 2>::value;
};

template<> struct fibonacci<1>
{
    static const int value = 1;
};

template<> struct fibonacci<0>
{
    static const int value = 0;
};
link|flag
+1 for quirk factor :) – Jim Burger Nov 11 '08 at 0:37
Ow. you make my brain hurt. :) – Herms Nov 11 '08 at 18:47
Why was this just down-voted? – Joel Coehoorn May 31 at 23:26
vote up 15 vote down

You can't beat Haskell for this. The simple solution is very close the mathematical defintion:

fibonacci 0     = 0
fibonacci 1     = 1
fibonacci n + 2 = fibonacci (n) + fibonacci (n + 1)

Or, for linear performance, you can take advantage of laziness and infinite lists:

fibonacci = numbers
    where numbers = 0 : 1 : zipWith (+) numbers (tail numbers)
link|flag
vote up 2 vote down

How about as music?

link|flag
vote up 14 vote down
static int[] fibs = { 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597,
	2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229,
	832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169,
	63245986, 102334155, 165580141, 267914296, 433494437, 701408733, 1134903170, 1836311903, };

static int fib(int n) {
    return fibs[n];
}
link|flag
The fastest implementation I have seen yet! – Elijah Nov 11 '08 at 1:00
That's what I call memoization. – Steve Jessop Nov 11 '08 at 1:07
Haha! we somewhat cheated in a programming contest and did that, we had a huuuuuge copy pasta of pre generated code for a giant array....it helped gain some speed for sure :) – Deinumite Nov 11 '08 at 18:35
vote up 3 vote down

Produces an infinite list of fibonacci numbers in F# using unfolding; [EDIT] now supports bigint's

#light
let fibs = (1I, 1I) |> Seq.unfold(fun (n0, n1) -> Some(n0, (n1, n0 + n1)))
link|flag
Two small additions will give you the Nth item of fib. F# rocks. let fibs = (0, 1) |> Seq.unfold(fun (n0, n1) -> Some(n0, (n1, n0 + n1))) let fibsItem n = fibs |> Seq.Skip n |> Seq.hd – JaredPar Nov 11 '08 at 0:42
Indeed, thought i'd just show an alternative lazy list impl. Thanks. – Jim Burger Nov 11 '08 at 0:47
vote up 0 vote down

I came across this little beauty the other day:

function f($n)
  {
    $sqrt5 = pow(5, 0.5);
    $gr = (1+$sqrt5)/2;
    return floor(0.5+(pow($g, $n)/$sqrt5));
  }

Mmmmmm, non-recursive :)

Apparently though, it is fairly quickly limited by rounding errors due to the binary representations of floating point numbers... ah well, 'tis cool none-the-less.

link|flag
yeah, also sub-optimal as soon as you want more than 2 results, like the questions says ;). Using this repeatedly to generate a sequence would give you FLOP death vs good ol INTs – Kent Fredric Nov 11 '08 at 0:28
On x86, the errors start for me at n=32. – Steve Jessop Nov 11 '08 at 1:00
Non-recursive yes, but also non-iterative. Not practical, but very cool :) – JoeBloggs Nov 27 '08 at 11:17
vote up 1 vote down

Perl Oneliner:

perl -e 'my @i=(0,1); (print q{ },$i[0]) and @i=($i[1],$i[0]+$i[1]) for (0..12);'

Increment 12 as neeeded.

link|flag
vote up 3 vote down

Ah la Duff's device

int fib(unsigned int i)
{
  int a = 1, b = 1, c = 1;
  switch(i%3)
    while(i > 3)
    {
       i-=3;
               b = a + c;
       case 2: a = b + c;
       case 1: c = a + b;
       case 0:
    }
  return c;
}
link|flag
vote up 2 vote down

Ruby:

 (0..12).inject([0,1]){ |x,y| print x[0].to_s+" " ; [x[1],x[0]+x[1]]}
link|flag
vote up -2 vote down

Recursive Way:

public static int fib(int n)
{
    // Base Case
    if (n <= 2)
        return 1;    	
    else 
        return fib(n-1) + fib(n-2);    	
}
link|flag
that doesn't produce the first n numbers, only the nth. – mercutio Nov 11 '08 at 0:19
that algorithm can also be greatly accelerated with a little memoization, unless you like calculating everything fib(n-1) times. – Kent Fredric Nov 11 '08 at 0:30
this is elegantly short, but try computing fib(100) with it. it runs in exponential time, so... not exactly efficient. – Jeff Feb 21 at 18:42
vote up 4 vote down

F#

#light

let fib = 
    let rec inner l r = 
        seq { 
            let next = l + r
            yield next
            yield! inner r next
        }
    seq { 
        yield 0
        yield 1
        yield! inner 0 1    
    }

let fibItem n = fib |> Seq.skip n |> Seq.hd
printfn "%d" (fibItem 10)
link|flag
I like the use of an infinite lazy sequence. That's nice. Very nice. – kronoz Nov 11 '08 at 0:32
seq monad ftw (oh sorry, 'computational workflow') – Erik Nov 11 '08 at 0:34
vote up -2 vote down
int fibonacci(int n)
{
   if ((n == 1) || (n == 2)) return 1;
   int a = 1;
   int b = 1;
   for (int i = 2; i < n; i++)
   {
      b = a + b;
      a = b - a;
   }
   return b;
}
link|flag

Your Answer

Get an OpenID
or

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