查找 PHP 数组的所有排列
给定一个字符串数组,例如 ['peter', 'paul', 'mary '],本文演示了如何生成数组元素的所有可能的排列。通过使用 PHP 编程,您可以使用各种函数来实现此目标。
一种方法是使用 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中文网其他相关文章!