Last active
September 14, 2019 17:22
-
-
Save elisim/4f0ebfed4f34681d8a7e9472ba2a2d4a to your computer and use it in GitHub Desktop.
fibonacci with memoization in python
This file contains 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
# Usage: python fib.py <number> | |
import sys | |
cache = {} | |
def main(): | |
verbose = '-v' in sys.argv | |
n = int(sys.argv[1]) | |
for i in range(n): | |
fni = fib(i) | |
if verbose: | |
print(f"fib({i}) = {fni}") | |
print(f"fib({n}) = {fib(n)}"); | |
def fib(n): | |
if n == 0 or n == 1: | |
return 1 | |
if n in cache.keys(): | |
return cache.get(n) | |
fn1 = fib(n-1) | |
fn2 = fib(n-2) | |
cache[n-1] = fn1 | |
cache[n-2] = fn2 | |
cache[n] = fn1 + fn2 | |
return cache[n] | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment