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

求幂函数代码比较

时间:2017-03-03 19:11:11      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:ret   amp   复杂   base   函数   class   二分   turn   res   

常规求幂

1 int pow1(int a,int b)
2 {
3     int r=1;
4     while(b--)
5         r*=a;
6     return r;
7 } 

二分求幂(一般)

int pow2(int a,int b)
{
int r=1,base=a;
while(b!=0)
{
    if(b%2)
        r*=base;
    base*=base;
    b/=2;
}
return r;
}

二分求幂(位操作,同pow2)

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

快速求幂(位运算,更复杂)

int pow3(int x,int n)
{
    if(n==0) return 1;
    else
    {
        while((n&1)==0)
        {
            n>>=1;
            x*=x;
        }
    }
    int result=x;
    n>>=1;
    while(n!=0)
    {
        x*=x;
    if((n&1)!=0)
        result*=x;
    n>>=1;
    }
    return result;
}

 

求幂函数代码比较

标签:ret   amp   复杂   base   函数   class   二分   turn   res   

原文地址:http://www.cnblogs.com/YingZhixin/p/6498008.html

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