python怎么实现幂函数
lewis
2019-03-31
23次阅读
在python中利用递归实现一个幂函数,具体方法如下:
double PowerWithExponentUnsigned(double base, unsigned int exponentUnsigned)
{
// 最小子问题
if(exponentUnsigned == 0)
return 1;
double result = PowerWithExponentUnsigned(base,exponentUnsigned / 2);
result = result * result;
if(exponentUnsigned % 2 == 1)
{
result *= base;
}
return result;
}

发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。