Skip to content

Instantly share code, notes, and snippets.

@michaelfeng
Forked from anirudhjayaraman/karatsuba.py
Created March 26, 2018 01:24
Show Gist options
  • Save michaelfeng/6c0019ea5df67e7a7307c2faa1481988 to your computer and use it in GitHub Desktop.
Save michaelfeng/6c0019ea5df67e7a7307c2faa1481988 to your computer and use it in GitHub Desktop.
Karatsuba Multiplication
def karatsuba(x,y):
"""Function to multiply 2 numbers in a more efficient manner than the grade school algorithm"""
if len(str(x)) == 1 or len(str(y)) == 1:
return x*y
else:
n = max(len(str(x)),len(str(y)))
nby2 = n / 2
a = x / 10**(nby2)
b = x % 10**(nby2)
c = y / 10**(nby2)
d = y % 10**(nby2)
ac = karatsuba(a,c)
bd = karatsuba(b,d)
ad_plus_bc = karatsuba(a+b,c+d) - ac - bd
# this little trick, writing n as 2*nby2 takes care of both even and odd n
prod = ac * 10**(2*nby2) + (ad_plus_bc * 10**nby2) + bd
return prod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment