首頁 >後端開發 >php教程 >如何產生 PHP 數組的所有排列?

如何產生 PHP 數組的所有排列?

Linda Hamilton
Linda Hamilton原創
2024-12-18 17:27:11882瀏覽

How to Generate All Permutations of a PHP Array?

產生PHP 陣列的所有排列

問題:

問題:
  • 問題:
  • 給定字串數組,產生其元素的所有可能的排列。例如,對於陣列['peter', 'paul', 'mary'],我們應該取得:
  • 彼得-保羅-瑪麗
  • 彼得-瑪麗-保羅
保羅-彼得瑪莉

保羅-瑪麗-彼得

瑪麗-彼得-保羅

瑪麗-保羅-彼得
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);
         }
    }
}

解1: pc_permute 函數

函數使用遞歸來交換和重新排序數組中的元素,產生排列。
function pc_next_permutation($p, $size) {
    // Find the largest index i where p[i] < p[i+1]
    for ($i = $size - 1; $p[$i] >= $p[$i+1]; --$i) { }

    // If i is -1, no next permutation exists
    if ($i == -1) { return false; }

    // Find the largest index j where p[j] > p[i]
    for ($j = $size; $p[$j] <= $p[$i]; --$j) { }

    // Swap p[i] and p[j]
    $tmp = $p[$i]; $p[$i] = $p[$j]; $p[$j] = $tmp;

    // Reverse the order of the elements from i+1 to size
    for (++$i, $j = $size; $i < $j; ++$i, --$j) {
         $tmp = $p[$i]; $p[$i] = $p[$j]; $p[$j] = $tmp;
    }

    return $p;
}

解 2:pc_next_permutation 函數

$arr = array('peter', 'paul', 'mary');

pc_permute($arr);

or

$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";
}

另一種方法是利用下一個排列

    用法:
參考:http://docstore.mik.ua/orelly/webprog/pcook/ch04_26.htm

以上是如何產生 PHP 數組的所有排列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn