def exgcd(a,b):
"""
Bézout coefficients (u,v) of (a,b) as:
a*u + b*v = gcd(a,b)
Result is the tuple: (u, v, gcd(a,b)). Examples:
>>> exgcd(7*3, 15*3)
(-2, 1, 3)
>>> exgcd(24157817, 39088169) #sequential Fibonacci numbers
(-14930352, 9227465, 1)
Algorithm source: Pierre L. Douillet
http://www.douillet.info/~douillet/working_papers/bezout/node2.html
"""
u, v, s, t = 1, 0, 0, 1
while b !=0:
q, r = divmod(a,b)
a, b = b, r
u, s = s, u - q*s
v, t = t, v - q*t
return (u, v, a)
评论列表
文章目录