gpt4 book ai didi

c - 实现基于整数的幂函数 pow(int, int) 的最有效方法

转载 作者:太空狗 更新时间:2023-10-29 16:13:43 24 4
gpt4 key购买 nike

在 C 语言中,将整数乘以另一个整数的幂的最有效方法是什么?

// 2^3
pow(2,3) == 8

// 5^5
pow(5,5) == 3125

最佳答案

平方求幂。

int ipow(int base, int exp)
{
int result = 1;
for (;;)
{
if (exp & 1)
result *= base;
exp >>= 1;
if (!exp)
break;
base *= base;
}

return result;
}

这是在非对称密码学中对大数进行模幂运算的标准方法。

关于c - 实现基于整数的幂函数 pow(int, int) 的最有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/101439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com