php FOR ループの最適化の問題
私が投稿した最後の投稿に誰もフォローしませんでした。質問が具体的でないか、基本的な PHP プログラマーが少ないか、忙しすぎるためかもしれません。 .
1 ~ 33 から 6 つの固有の数値を選択してデータベースに書き込みたいです。
数値の選択プロセスが非常に遅く、PHP では常にエラーが発生します。次のコード:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><?php $str=array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33); for($i=0;$i<28;$i++){ for($j=$i+1;$j<33;$j++){ for($k=$j+1;$k<33;$k++){ for($l=$j+1;$l<33;$l++){ for($m=$l+1;$m<33;$m++){ for($n=$m+1;$n<33;$n++){ echo "$str[i]|$str[j]|$str[k]|$str[l]|$str[m]|$str[n]|<br>";//显示效果,本想写入TXT文档在传如数据库. } } } } } } ?>
$a = 範囲(1, 33); $ar = 組み合わせ($a, 6); //組み合わせ効率の高い10手方法を見つける 関数の組み合わせ($numArr,$combineLen) { $numCt = カウント($numArr); if($combineLen > $numCt) return; $bin = str_pad('',$combineLen,'1'); $bin = str_pad($bin,$numCt,'0',STR_PAD_RIGHT); $find = $bin; $rs[] = implode(' ',array_slice($numArr,0,$combineLen)); $j = 1; while(strrev($find) != $bin) { $k = 爆発('10',$find,2); $find = $find{0} === '0' strrev($k[0]).'01'.$k[1] : $k[0].'01'.$k[1]; for($i=0;$i<font color="#e78608">------解決策---------</font><br>
[ユーザー:root 時刻:21:21:46 パス:/home/liangdong/php]$ php permutation.php 合計使用時間: 9738642ms [ユーザー:root 時刻:21:21:56 パス:/home/liangdong/php]$ cat permutation.php <?php $beg_time = マイクロタイム(true); $beg_time *= 1000 * 1000; $table = range(1, 33); $temp = 配列(); $fp = null; function _get_permutations($index, $num) { グローバル $temp; グローバル $total; グローバル $テーブル; グローバル $fp; if ($num == $total) { グローバル $perms; fwrite($fp, json_encode($temp) . PHP_EOL); 戻る; } for ($ndx = $index; 33 - $ndx + $num >= $total; ++ $ndx) { $temp[$num] = $table[$ndx]; _get_permutations($ndx + 1, $num + 1); } } 関数 get_permutations($n = 6) { グローバル $total; グローバル $perms; グローバル $fp; if ($n 33) { false を返します。 } $total = $n; $fp = fopen("data.txt", "w"); _get_permutations(0, 0); fclose($fp); true を返します。 } get_permutations(); $end_time = マイクロタイム(true); $end_time *= 1000 * 1000; echo "合計使用時間: " . ($end_time - $beg_time) . ?><div class="clear"></div>