检查两个给定数字是否互质的最快方法是什么?

发布于 2024-08-05 10:33:07 字数 64 浏览 10 评论 0原文

一种方法是计算它们的gcd并检查它是否为1。

有没有更快的方法?

One way is to calculate their gcd and check if it is 1.

Is there some faster way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

荒人说梦 2024-08-12 10:33:07

欧几里得算法(计算gcd)非常快。当从[1, n]中均匀随机抽取两个数字时,计算其gcd的平均步数为O(log n)。每个步骤所需的平均计算时间是位数的二次方。

有一些替代方案的性能稍好(即,每个步骤都是位数的次二次方),但它们仅对非常大的整数有效。例如,请参阅关于 Schönhage 算法和次二次整数 gcd 计算

The Euclidean algorithm (computes gcd) is very fast. When two numbers are drawn uniformly at random from [1, n], the average number of steps to compute their gcd is O(log n). The average computation time required for each step is quadratic in the number of digits.

There are alternatives that perform somewhat better (i.e., each step is subquadratic in the number of digits), but they are only effective on very large integers. See, for example, On Schönhage's algorithm and subquadratic integer gcd computation.

梦情居士 2024-08-12 10:33:07

如果您运行的机器上的除法/余数比班次贵得多,请考虑二进制 GCD。

if you're running on a machine for which division/remainder is significantly more expensive than shifts, consider binary GCD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文