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

快速幂模板

时间:2018-04-07 01:05:01      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:turn   base   log   快速   class   body   ase   gpo   while   

int poww(int a, int b) {
    int ans = 1, base = a;
    while (b != 0) {
        if (b & 1 != 0)
            ans *= base;
            base *= base;
            b >>= 1;
    }
    return ans;
}

快速幂模板

标签:turn   base   log   快速   class   body   ase   gpo   while   

原文地址:https://www.cnblogs.com/smallocean/p/8729420.html

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