python怎么实现幂函数 Python的幂函数

主机教程 建站分享 2年前 (2022-12-14) 164次浏览

文章摘要:python怎么实现幂函数 Python的幂函数

在python中利用递归实现一个幂函数,具体方法如下: double PowerWithExponentUns […]

在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;

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么实现幂函数 Python的幂函数
文章链接:http://www.7966.org/post/14334.html
转载请注明出处

喜欢 (0)