Janakan Semua Pilihatur bagi Tatasusunan PHP
Masalah:
Diberikan tatasusunan rentetan , menjana semua pilih atur yang mungkin bagi elemennya. Sebagai contoh, untuk tatasusunan ['peter', 'paul', 'mary'], kita sepatutnya dapatkan:
Penyelesaian 1: Fungsi pc_permute
Fungsi ini menggunakan rekursi untuk menukar dan menyusun semula elemen dalam tatasusunan, menjana pilih atur.
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); } } }
Penyelesaian 2: pc_next_permutation Function
Pendekatan alternatif ialah menggunakan pendekatan seterusnya permutasi algoritma.
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; }
Penggunaan:
$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"; }
Rujukan:
Atas ialah kandungan terperinci Bagaimana untuk Menjana Semua Pilihatur bagi Tatasusunan PHP?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!