Zakładając, że mówimy o porządku leksykograficznym nad permutowanymi wartościami, istnieją dwa ogólne podejścia, których można użyć:
- przekształcić jedną permutację elementów do następnej permutacji (jak opublikował ShreevatsaR) lub
- bezpośrednio obliczyć
n
th permutację, licząc n
od 0 w górę.
Dla tych (takich jak ja ;-), którzy nie znają języka C ++ jako rodzimego, podejście 1 można zaimplementować z następującego pseudokodu, zakładając indeksowanie tablicy z indeksem zero po lewej stronie (podstawiając inną strukturę , takie jak lista, jest „pozostawione jako ćwiczenie” ;-):
1. scan the array from right-to-left (indices descending from N-1 to 0)
1.1. if the current element is less than its right-hand neighbor,
call the current element the pivot,
and stop scanning
1.2. if the left end is reached without finding a pivot,
reverse the array and return
(the permutation was the lexicographically last, so its time to start over)
2. scan the array from right-to-left again,
to find the rightmost element larger than the pivot
(call that one the successor)
3. swap the pivot and the successor
4. reverse the portion of the array to the right of where the pivot was found
5. return
Oto przykład zaczynający się od aktualnej permutacji CADB:
1. scanning from the right finds A as the pivot in position 1
2. scanning again finds B as the successor in position 3
3. swapping pivot and successor gives CBDA
4. reversing everything following position 1 (i.e. positions 2..3) gives CBAD
5. CBAD is the next permutation after CADB
W przypadku drugiego podejścia (bezpośrednie obliczenie n
tej permutacji) pamiętaj, że istnieją N!
permutacje N
elementów. Dlatego też, jeśli permutujesz N
elementy, pierwsze (N-1)!
permutacje muszą zaczynać się od najmniejszego elementu, następne (N-1)!
permutacje muszą zaczynać się od drugiego najmniejszego i tak dalej. Prowadzi to do następującego podejścia rekurencyjnego (ponownie w pseudokodzie, numerując permutacje i pozycje od 0):
To find permutation x of array A, where A has N elements:
0. if A has one element, return it
1. set p to ( x / (N-1)! ) mod N
2. the desired permutation will be A[p] followed by
permutation ( x mod (N-1)! )
of the elements remaining in A after position p is removed
Na przykład 13. permutacja ABCD znajduje się w następujący sposób:
perm 13 of ABCD: {p = (13 / 3!) mod 4 = (13 / 6) mod 4 = 2
C followed by perm 1 of ABD {because 13 mod 3! = 13 mod 6 = 1}
perm 1 of ABD: {p = (1 / 2!) mod 3 = (1 / 2) mod 2 = 0
A followed by perm 1 of BD {because 1 mod 2! = 1 mod 2 = 1}
perm 1 of BD: {p = (1 / 1!) mod 2 = (1 / 1) mod 2 = 1
D followed by perm 0 of B {because 1 mod 1! = 1 mod 1 = 0}
B (because there's only one element)
DB
ADB
CADB
Nawiasem mówiąc, „usuwanie” elementów może być reprezentowane przez równoległą tablicę wartości logicznych, która wskazuje, które elementy są nadal dostępne, więc nie jest konieczne tworzenie nowej tablicy przy każdym wywołaniu rekurencyjnym.
Tak więc, aby iterować po permutacjach ABCD, po prostu policz od 0 do 23 (4! -1) i bezpośrednio oblicz odpowiednią permutację.