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

递归快速幂

时间:2020-06-08 12:51:33      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:快速   递归   temp   return   int   lse   lan   code   turn   

int qpow(int a, int n) {
    if (n == 0)
        return 1;
    else if (n % 2 == 1)
        return qpow(a, n - 1) * a;
    else {
        int temp = qpow(a, n / 2);
        return temp * temp;
    }
}

递归快速幂

标签:快速   递归   temp   return   int   lse   lan   code   turn   

原文地址:https://www.cnblogs.com/luoling8192/p/13064920.html

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