二分求幂

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二分求幂相关的知识,希望对你有一定的参考价值。

2017-07-20 17:47:25 

writer:pprp

介绍:二分求幂原理:技术分享

一般用递归求解:

代码如下:

int power(ll base,unsigned int exponent)
{
    if(exponent == 0)
    {
        return 1;
    }
    if(exponent == 1)
    {
        return base;
    }
    double result = power(base,exponent>>1);
    result *= result;
    if(exponent%2 == 1)
        result *= base;
    return result;
}

属于数论,遇到具体的题目还是有点问题

以上是关于二分求幂的主要内容,如果未能解决你的问题,请参考以下文章

求幂函数代码比较

题目1441:人见人爱 A ^ B(二分求幂)

二分求幂

HDU 3461 Code Lock(并查集+二分求幂)

数学问题-二分求幂例题

求幂的 SIMD 代码