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

高效求幂运算

时间:2015-06-09 21:26:47      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

//说明:
//高效求幂运算(递归)
//输入:整数X,幂次N
//输出:X^N
//时间复杂度:O(logN)
#include<iostream>
using namespace std;
int Pow(int X,int N)
{
    if(N==0)
        return 1;
    else if(N==1)
        return X;
    else if(N%2==0)
        return Pow(X*X,N/2);
    else
        return Pow(X*X,N/2)*X;
}
void main()
{
    cout<<"Input X and N:"<<endl;
    int X,N;
    cin>>X>>N;
    cout<<Pow(X,N)<<endl;
}

高效求幂运算

标签:

原文地址:http://www.cnblogs.com/riden/p/4564418.html

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