2番目のコードが最初のコード(6秒と11秒)よりも2倍速い理由を教えてください。(すべてのバージョンで)理由は、関数を使用するか、グローバルなものか何か他のものを使用する理由とその理由です。私は他のスクリプトでこのミスを防止したいですが、私は間違いなく私のミスは何か分かりません。機能を使用するか、グローバルを使用するのに時間がかかりますか?
このスクリプトはオンラインツールで実行しますが、同じ結果が得られます。
for ($i = 1; $i < 2500; ++$i) {
$pen[$i] = $i * (3 * $i - 1)/2;
}
function pentagonal($num) {
global $pen;
return $pen[$num];
}
function is_pentagonal($c) {
$x = (1+sqrt(1+24*$c))/(6);
if ($x == (int)$x) {
return true;
} else {
return false;
}
}
for ($i = 2; ; ++$i) {
for ($j = 1; $j < $i ; ++$j) {
$pi = pentagonal($i); // Here is the difference
$pj = pentagonal($j); // Here is the difference
if (is_pentagonal($pi + $pj, $pen)) {
if (is_pentagonal(abs($pi - $pj), $pen)) {
$difference = $pi - $pj;
break 2;
}
}
}
}
echo $i.' '.$j.' '.$difference."\n";
第コード(単に機能を除去し、アレイから直接値を取得):
for ($i = 1; $i < 2500; ++$i) {
$pen[$i] = $i * (3 * $i - 1)/2;
}
// function pentagonal($num) {
// global $pen;
// return $pen[$num];
// }
function is_pentagonal($c) {
$x = (1+sqrt(1+24*$c))/(6);
if ($x == (int)$x) {
return true;
} else {
return false;
}
}
for ($i = 2; ; ++$i) {
for ($j = 1; $j < $i ; ++$j) {
$pi = $pen[$i]; // Here is the difference
$pj = $pen[$j]; // Here is the difference
if (is_pentagonal($pi + $pj, $pen)) {
if (is_pentagonal(abs($pi - $pj), $pen)) {
$difference = $pi - $pj;
break 2;
}
}
}
}
echo $i.' '.$j.' '.$difference."\n";