数论

Euclidean Algorithm

Greatest Common Divisor -- gcd(a,b): greatest integer divides both a and b:

gcd(a,b)=gcd(a,a-b)

gcd(a,0)=a

gcd(a,b) is the smallest positive number in {aX+bY}

int gcd(int a, int b)
{    
    if(b == 0) return a;    
    return gcd(b, a%b);
}
 def gcd(m,n):
   ...:     while n:
   ...:         m,n=n,m%n
   ...:     return m

Running time: O(log(a + b))

Extended Euclidean Algorithm

keep the original algorithm, but write all intermediate numbers as integer combinations of a and b 

设如下方程:ax+by  =  gcd(a,b)  =  d;

bx’+(a%b)y’  =  gcd(b,a%b);

那么有gcd(a,b)  =  gcd(b,a %b),

那么ax+by  =  bx’+(a%b)y’  =  bx’ +(a – [a/b]*b)y’  =  ay’ + b(x’ – [a/b]y’),

恒等关系有 x = y’ , y = (x’ – [a/b]y’),[a/b]表示a/b的值向下取整。

........

用exgcd(a,b,d,x,y)表示方程ax+by = d,那么由上面一直递归下去,直到 b = 0,递归结束,此时  d = gcd(a,0) =a , x = 1,y =0;

int extend_Euclid(int a, int b, int &x, int &y)
{
    if(b==0)
    {
        x = 1;
        y = 0;
        return a;
    }
    int r = extend_Euclid(b, a%b, y, x);
    y -= a/b*x; 
    return r;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值