实现扩展Euclid算法

时间:2017-03-23 14:12:01

标签: python algorithm computer-science

为什么Extended Euclid Algorithm的以下实施失败?

def extended_euclid(a,b):
    if b == 0:
        return {a, 1, 0}

    d1,x1,y1 = extended_euclid(b, a % b)
    d = d1
    x = y1
    y = x1 - math.floor(a/b) * y1
    return {d, x, y} 

2 个答案:

答案 0 :(得分:1)

def extended_euclid(a,b):
    if b == 0:
        return a, 1, 0

    d1,x1,y1 = extended_euclid(b, a % b)
    d = d1
    x = y1
    y = x1 - math.floor(a/b) * y1
    return d, x, y

从退货中删除{}。 看看d1,x1,y1 = extended_euclid(b, a % b),如果您将{}保留在return,则没有足够的值来解压缩。

答案 1 :(得分:0)

这是https://en.wikibooks.org/wiki/Algorithm_Implementation/Mathematics/Extended_Euclidean_algorithm中的实现,看起来类似于你的实现。

def egcd(a, b):
    if a == 0:
        return (b, 0, 1)
    else:
        g, x, y = egcd(b % a, a)
        return (g, y - (b // a) * x, x)