php最大素因数
我用 PHP 编写了一个程序来查找最大素因数。我认为它非常优化,因为它加载速度非常快。但是,有一个问题:它不计算非常大的数字的质因数。这是程序:
function is_even($s) {
$sk_sum = 0;
for($i = 1; $i <= $s; $i++) {
if($s % $i == 0) { $sk_sum++; }
}
if($sk_sum == 2) {
return true;
}
}
$x = 600851475143; $i = 2; //x is number
while($i <= $x) {
if($x % $i == 0) {
if(is_even($i)) {
$sk = $i; $x = $x / $i;
}
}
$i++;
}
echo $sk;
I wrote a program in PHP to find the largest prime factor. I think it is quite optimized, because it loads quite fast. But, there is a problem: it doesn't count the prime factors of very big numbers. Here is the program:
function is_even($s) {
$sk_sum = 0;
for($i = 1; $i <= $s; $i++) {
if($s % $i == 0) { $sk_sum++; }
}
if($sk_sum == 2) {
return true;
}
}
$x = 600851475143; $i = 2; //x is number
while($i <= $x) {
if($x % $i == 0) {
if(is_even($i)) {
$sk = $i; $x = $x / $i;
}
}
$i++;
}
echo $sk;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PHP 中最大的非溢出整数存储在常量
PHP_INT_MAX
中。您将无法在 PHP 中使用大于此值的整数。
要查看 PHP 的所有预定义常量,只需使用:
PHP_INT_MAX
的值可能为2,147,483,647
。要在 PHP 中处理任意精度的数字,请参阅 GMP 或 BC 数学 PHP 扩展。
The largest non-overflowing integer in PHP is stored in the constant
PHP_INT_MAX
.You won't be able to work with integers larger than this value in PHP.
To see all of PHP's predefined constants, just use:
PHP_INT_MAX
probably has a value of2,147,483,647
.To handle numbers of arbitrary precision in PHP, see either the GMP or BC Math PHP extensions.
您应该阅读有关 Prime 测试 和 筛分。
特别是,您不需要测试每个除数是否为素数。
像下面这样的东西会更快。
您还可以在 $i 达到 sqrt($x) 时停止外循环,如果您还没有找到除数,那么您就知道 $x 是质数。
You should read about Prime testing and Sieving.
In particular, you don't need to test whether each of your divisors is prime.
Something like the following would be faster.
You can also stop your outer loop when $i reaches sqrt($x), and if you haven't found a divisor yet then you know $x is prime.
嗯,每种语言都有它自己的(虽然通常是相同的)限制,所以如果你超过了这个 php 的限制,你就不能再更高了。最大整数为 9E18。
Well, every language has it's own (while usually same) limitations, so if you exceed this php's limit, you can't get any higher. Max Integer is 9E18.