Last active
December 13, 2015 22:39
-
-
Save zbigniewTomczak/4986483 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fibonacci = (function ( ) { | |
var memo = [0, 1]; | |
var fib = function (n) { | |
var result = memo[n]; | |
if (typeof result !== 'number') { | |
result = fib(n - 1) + fib(n - 2); | |
memo[n] = result; | |
} | |
return result; | |
}; | |
return fib; | |
}( )); | |
var fibonacci2 = function (n) { | |
return n < 2 ? n : fibonacci2(n - 1) + fibonacci2(n - 2); | |
}; | |
var start = new Date(); | |
fibonacci(30); | |
var elapsed = new Date() - start; | |
console.log("fibonacci1: " + elapsed); | |
start = new Date(); | |
fibonacci2(30); | |
elapsed = new Date() - start; | |
console.log("fibonacci2: " + elapsed); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment