Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

One morning I got an idea on how to solve Fibonacci really quickly for high values of N. I would like to know if any of you have seen a faster Fibonacci solver that solves at runtime (none of this template compile time trickery) and if so, what makes it faster then my solution? If you have any suggestions on how to optimize my solution further, I would love to hear it.

The solution is in my blog post here: http://xoorath.com/2011/01/26/optimized-fibonacci/

I'll respond to comments both here, and on my blog.

Edit----

And jesus, for those of you who are bashing me for linking to my own site, heres the paste bin. http://pastebin.com/p5vnZH4y

My blog has a better explanation of what I'm doing, but for those just interested in the code, pastebin should suffice.

share|improve this question
16  
If you have an idea post it here, otherwise it looks like you are just trying to drive up traffic to your blog. – Kernow Steve Feb 21 '11 at 15:47
1  
This is just looking for traffic. Until I have something to look at here, my down vote stays! – thecoshman Feb 21 '11 at 15:53
Have you even looked at the solution, or are you just judging my post based on my link? I'll check out Sven's link, but if I'm not mistaken my solution is fairly well thought out and explained, and more importantly I believe its pretty unique too. – Xoorath Feb 21 '11 at 15:55
1  
codereview.stackexchange.com – Fred Nurk Feb 21 '11 at 16:29
2  
Solves fib(500000) in 20 seconds (here on my ancient laptop). Sure, that's twice (but only twice!) as slow as yours, but on a much slower machine and it took much less time to write. – Fred Nurk Feb 21 '11 at 16:56
show 4 more comments

closed as not a real question by Drakosha, Tom Medley, birryree, Marc B, BЈовић Feb 21 '11 at 16:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 12 down vote accepted

You can directly compute the nth Fibonacci Fn number. Just use the formula given in Wikipedia and some multi-precision library like GMP.

Since the number of digits of Fn grows as O(n), your algorithm is O(n^2). Using the formula and binary powering will be O(n log(n)).

Edit: The GNU Multi-Precision library contains a Fibonacci number implementation using matrix powering (also explained in the Wikipedia article). This implementation takes about 0.01 seconds to compute Fn with n=500000 on my machine.

share|improve this answer
Well explained. have you seen any code examples of this method? – Xoorath Feb 21 '11 at 16:02

500,000 iterations in 10 seconds on a modern system is actually pretty slow. Fibonacci sequences are just addition. All you've done is some complicated-looking bit fiddling to do the n-2/n-1 lookups. Doing a quick & dirty PHP script using GMP, I get 3.97 seconds for the 500,000th Fibonacci number, on an old Althon 64 2ghz.

<?php
    $n1 = "1";
    $n2 = "1";

$start = microtime(true);
for ($i = 1; $i < 500000; $i++) {
    $n = gmp_add($n1, $n2);
    $n1 = $n2;
    $n2 = $n;
}
$end = microtime(true);
echo gmp_strval($n), "\n";
echo $end - $start, "\n";

So, your "improvements" are not particularly impressive.

share|improve this answer
It's been over a year since you posted this and I still can't think of a less scientific or more douchy attempt at making any claim of any sort. You deserve a trophy. – Xoorath May 4 '12 at 18:41

Or you could do it in a split second with the Binet Formula

share|improve this answer
The Binet formula does look pretty cool. I suggest answering the question if you're looking to get accepted. – Xoorath Feb 21 '11 at 16:05
You asked if anyone has seen a faster solution. Your solution is O(n^2) (as has already been stated), the Binet Formula is as efficient as the pow and sqrt functions (which, if memory serves me, is O(n log n). So for large values of N, the Binet Formula will give you a much faster result. – Zac Howland Feb 21 '11 at 16:14
Excellent, thanks for that. – Xoorath Feb 21 '11 at 16:17

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