算法 C/C++ :使用 an 和 d 32 或 64 位整数计算 (2^n)%d 的最快方法
我正在寻找一种算法,允许我使用 n 和 d 32 或 64 位整数来计算 (2^n)%d
。
问题在于,即使使用多精度库,也不可能将 2^n
存储在内存中,但也许存在仅使用 32 计算 (2^n)%d
的技巧或 64 位整数。
非常感谢。
I am searching for an algorithm that allow me to compute (2^n)%d
with n and d 32 or 64 bits integers.
The problem is that it's impossible to store 2^n
in memory even with multiprecision libraries, but maybe there exist a trick to compute (2^n)%d
only using 32 or 64 bits integers.
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看模幂算法。
这个想法不是计算
2^n
。相反,您可以在通电时多次减小模d
。 这可以使数字保持较小。将该方法与 平方求幂,您可以计算
(2^n)%d
只需O(log(n))
步。这是一个小例子:
2^130 % 123 = 40
Take a look at the Modular Exponentiation algorithm.
The idea is not to compute
2^n
. Instead, you reduce modulusd
multiple times while you are powering up. That keeps the number small.Combine the method with Exponentiation by Squaring, and you can compute
(2^n)%d
in onlyO(log(n))
steps.Here's a small example:
2^130 % 123 = 40