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

如何有效的实现一个正整数的N次方

时间:2015-04-21 11:18:13      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

以时间复杂度为logn来实现一个数的N次方;

#include<iostream>
using namespace std;
int pow(int a,int index)
{
	int result=1;
	int temp=a;
	for(;index;index>>=1)
	{
		if(index&1)
			result*=temp;
		temp*=temp;
	}
	return result;
}
int main()
{
	
	cout<<pow(2,4)<<endl;
	system("pause");
	return 0;
}


如何有效的实现一个正整数的N次方

标签:

原文地址:http://blog.csdn.net/qq_22335577/article/details/45166519

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