The Algorithm Design Manual Second Edition


Constructing All Permutations



Download 5,51 Mb.
Pdf ko'rish
bet192/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   188   189   190   191   192   193   194   195   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

7.1.2

Constructing All Permutations

Counting permutations of



{1, . . . , n} is a necessary prerequisite to generating them.

There are distinct choices for the value of the first element of a permutation. Once




7 . 1

B A C K T R A C K I N G



235

we have fixed a

1

, there are n



− 1 candidates remaining for the second position,

since we can have any value except a

1

(repetitions are forbidden in permutation).



Repeating this argument yields a total of n! =



n



i=1

distinct permutations.

This counting argument suggests a suitable representation. Set up an ar-

ray/vector of cells. The set of candidates for the ith position will be the set

of elements that have not appeared in the (i



− 1) elements of the partial solution,

corresponding to the first i



− 1 elements of the permutation.

In the scheme of the general backtrack algorithm, S



k

=

{1, . . . , n} − a, and is

a solution whenever n:

construct_candidates(int a[], int k, int n, int c[], int *ncandidates)

{

int i;


/* counter */

bool in_perm[NMAX];

/* who is in the permutation? */

for (i=1; i

for (i=0; i

*ncandidates = 0;

for (i=1; i<=n; i++)

if (in_perm[i] == FALSE) {

c[ *ncandidates] = i;

*ncandidates = *ncandidates + 1;

}

}

Testing whether is a candidate for the kth slot in the permutation can be



done by iterating through all k

− 1 elements of and verifying that none of them

matched. However, we prefer to set up a bit-vector data structure (see Section

12.5

(page


385

)) to maintain which elements are in the partial solution. This gives a

constant-time legality check.

Completing the job requires specifying process solution and is a solution,

as well as setting the appropriate arguments to backtrack. All are essentially the

same as for subsets:

process_solution(int a[], int k)

{

int i;



/* counter */

for (i=1; i<=k; i++) printf(" %d",a[i]);

printf("\n");

}



236

7 .


C O M B I N A T O R I A L S E A R C H A N D H E U R I S T I C M E T H O D S

t = 3


5

6

4



2

s = 1


5

4

3



1

2

3



3

4

3



2

5

3



2

5

4



3

6

6



3

6

Figure 7.1: Search tree enumerating all simple s-paths in the given graph (left).



is_a_solution(int a[], int k, int n)

{

return (k == n);



}

generate_permutations(int n)

{

int a[NMAX];



/* solution vector */

backtrack(a,0,n);

}

As a consequence of the candidate order, these routines generate permutations



in lexicographic, or sorted order—i.e., 123, 132, 213, 231, 312, and 321. The prob-

lem of generating permutations is more thoroughly discussed in Section

14.4

(page


448

).


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   188   189   190   191   192   193   194   195   ...   488




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish