Created
April 13, 2020 21:58
-
-
Save Keirua/ee078a63a0eae70cd09935b33bf7679c to your computer and use it in GitHub Desktop.
fibonacci with O(log(n)) complexity
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
# | |
from decimal import * | |
def fib(n): | |
return fib_iter(1,0,0,1,Decimal(n)) | |
def fib_iter(a,b,p,q,n): | |
nb_iter = 0 | |
while n != 0: | |
#print(a,b,p,q,n) | |
if n%2 == 0: | |
p,q = p*p+q*q, (2*p*q)+q*q | |
n = int(n/2) | |
else: | |
a,b = (b*q+a*q+a*p), (b*p+a*q) | |
n = n-1 | |
nb_iter = nb_iter+1 | |
print(n) | |
return b | |
n = 30000000 | |
fN = fib(Decimal(str(n))) | |
print("fib({})".format(n)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment