码迷,mamicode.com
首页 > 其他好文 > 详细

140724暑期培训.txt

时间:2014-07-25 11:09:31      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   re   c   size   x   函数   return   b   

1、同余定理
   (a+b)%c==(a%c+b%c)%c
   (a*b)%c==[(a%c)*(b%c)]%c
         因为有的数在int范围内,但是两个的乘积却超过了int范围,这样可以避免运算过程中超过int范围
2、gcd函数(即最大公约数)
      int gcd(int a,int b)
      {
           return !b?a:gcd(b,a%b);
      }

140724暑期培训.txt,布布扣,bubuko.com

140724暑期培训.txt

标签:style   re   c   size   x   函数   return   b   

原文地址:http://blog.csdn.net/wangluoershixiong/article/details/38108761

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!