The Algorithm Design Manual Second Edition


Constructing All Subsets



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

7.1.1

Constructing All Subsets

A critical issue when designing state spaces to represent combinatorial objects is

how many objects need representing. How many subsets are there of an n-element

set, say the integers



{1, . . . , n}? There are exactly two subsets for = 1, namely {}

and


{1}. There are four subsets for = 2, and eight subsets for = 3. Each new

element doubles the number of possibilities, so there are 2



n

subsets of elements.

Each subset is described by elements that are in it. To construct all 2

n

sub-


sets, we set up an array/vector of cells, where the value of a

i

(true or false)

signifies whether the ith item is in the given subset. In the scheme of our general

backtrack algorithm, S



k

= (true, f alse) and is a solution whenever n. We

can now construct all subsets with simple implementations of is a solution(),

construct candidates(), and process solution().

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

{

return (k == n);



/* is k == n? */

}



234

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

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

{

c[0] = TRUE;



c[1] = FALSE;

*ncandidates = 2;

}

process_solution(int a[], int k)



{

int i;


/* counter */

printf("{");

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

if (a[i] == TRUE) printf(" %d",i);

printf(" }\n");

}

Printing each out subset after constructing it proves to be the most complicated



of the three routines!

Finally, we must instantiate the call to backtrack with the right arguments.

Specifically, this means giving a pointer to the empty solution vector, setting = 0

to denote that it is empty, and specifying the number of elements in the universal

set:

generate_subsets(int n)



{

int a[NMAX];

/* solution vector */

backtrack(a,0,n);

}

In what order will the subsets of



{123be generated? It depends on the order

of moves construct candidates. Since true always appears before false, the subset

of all trues is generated first, and the all-false empty set is generated last:

{123},

{12}{13}{1}{23}{2}{3}{}

Trace through this example carefully to make sure you understand the back-

tracking procedure. The problem of generating subsets is more thoroughly discussed

in Section

14.5

(page


452

).


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   187   188   189   190   191   192   193   194   ...   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