PHP 配列のすべての順列の検索
指定された文字列の配列 (例: ['peter', 'paul', 'mary) '] では、この記事では、配列要素の考えられるすべての順列を生成する方法を説明します。 PHP でプログラミングすると、さまざまな関数を使用してこの目標を達成できます。
1 つのアプローチは、再帰的アルゴリズムを使用して順列を生成する pc_permute 関数を使用することです。この関数は入力配列を引数として受け取り、配列のオプションのパラメーターとして順列を格納します。入力配列を反復処理し、要素をリストの先頭に移動し、更新された配列で自身を再帰的に呼び出すことで新しい順列を生成します。
これは、動作中の pc_permute 関数を示すコード スニペットです。 :
function pc_permute($items, $perms = array()) { if (empty($items)) { echo join(' ', $perms) . "<br />"; } else { for ($i = count($items) - 1; $i >= 0; --$i) { $newitems = $items; $newperms = $perms; list($foo) = array_splice($newitems, $i, 1); array_unshift($newperms, $foo); pc_permute($newitems, $newperms); } } } $arr = array('peter', 'paul', 'mary'); pc_permute($arr);
別のアプローチは、 pc_next_permutation 関数。わずかに異なるアルゴリズムを使用して順列を生成します。配列内の隣接する要素を比較し、必要に応じてそれらを交換して、シーケンス内の次の順列を生成します。
pc_next_permutation 関数のコード スニペットは次のとおりです。
function pc_next_permutation($p, $size) { // slide down the array looking for where we're smaller than the next guy for ($i = $size - 1; $p[$i] >= $p[$i+1]; --$i) { } // if this doesn't occur, we've finished our permutations // the array is reversed: (1, 2, 3, 4) => (4, 3, 2, 1) if ($i == -1) { return false; } // slide down the array looking for a bigger number than what we found before for ($j = $size; $p[$j] <= $p[$i]; --$j) { } // swap them $tmp = $p[$i]; $p[$i] = $p[$j]; $p[$j] = $tmp; // now reverse the elements in between by swapping the ends for (++$i, $j = $size; $i < $j; ++$i, --$j) { $tmp = $p[$i]; $p[$i] = $p[$j]; $p[$j] = $tmp; } return $p; } $set = split(' ', 'she sells seashells'); // like array('she', 'sells', 'seashells') $size = count($set) - 1; $perm = range(0, $size); $j = 0; do { foreach ($perm as $i) { $perms[$j][] = $set[$i]; } } while ($perm = pc_next_permutation($perm, $size) and ++$j); foreach ($perms as $p) { print join(' ', $p) . "\n"; }
以上がPHP 配列の可能なすべての順列を生成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。