在 PHP 中生成数组的排列
在 PHP 中,生成数组的排列涉及以每种可能的顺序排列其所有元素。例如,给定一个字符串数组 ['peter', 'paul', 'mary'],我们的目标是生成以下内容排列:
彼得-保罗-玛丽
彼得-玛丽-保罗
保罗-彼得-玛丽
保罗-玛丽-彼得
玛丽-彼得-保罗
玛丽- paul-peter
为了解决这个问题,我们提出了两个 PHP
函数 1:
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);
函数 2:
function pc_next_permutation($p, $size) { for ($i = $size - 1; $p[$i] >= $p[$i+1]; --$i) { } if ($i == -1) { return false; } for ($j = $size; $p[$j] <= $p[$i]; --$j) { } $tmp = $p[$i]; $p[$i] = $p[$j]; $p[$j] = $tmp; 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'); $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 中生成数组的所有排列?的详细内容。更多信息请关注PHP中文网其他相关文章!