算法 C/C++ :使用 an 和 d 32 或 64 位整数计算 (2^n)%d 的最快方法

发布于 2024-12-28 03:43:56 字数 215 浏览 0 评论 0原文

我正在寻找一种算法,允许我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裸钻 2025-01-04 03:43:56

查看模幂算法

这个想法不是计算2^n。相反,您可以在通电时多次减小模d这可以使数字保持较小。

将该方法与 平方求幂,您可以计算(2^n)%d 只需 O(log(n)) 步。

这是一个小例子:2^130 % 123 = 40

2^1   % 123 = 2
2^2   % 123 = 2^2      % 123    = 4
2^4   % 123 = 4^2      % 123    = 16
2^8   % 123 = 16^2     % 123    = 10
2^16  % 123 = 10^2     % 123    = 100
2^32  % 123 = 100^2    % 123    = 37
2^65  % 123 = 37^2 * 2 % 123    = 32
2^130 % 123 = 32^2     % 123    = 40

Take a look at the Modular Exponentiation algorithm.

The idea is not to compute 2^n. Instead, you reduce modulus d 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 only O(log(n)) steps.

Here's a small example: 2^130 % 123 = 40

2^1   % 123 = 2
2^2   % 123 = 2^2      % 123    = 4
2^4   % 123 = 4^2      % 123    = 16
2^8   % 123 = 16^2     % 123    = 10
2^16  % 123 = 10^2     % 123    = 100
2^32  % 123 = 100^2    % 123    = 37
2^65  % 123 = 37^2 * 2 % 123    = 32
2^130 % 123 = 32^2     % 123    = 40
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文