The Algorithm Design Manual Second Edition


Constructing All Paths in a Graph



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

7.1.3

Constructing All Paths in a Graph

Enumerating all the simple to paths through a given graph is a more complicated

problem than listing permutations or subsets. There is no explicit formula that

counts the number of solutions as a function of the number of edges or vertices,

because the number of paths depends upon the structure of the graph.

The starting point of any path from to is always s. Thus, is the only

candidate for the first position and S

1

=



{s}. The possible candidates for the

second position are the vertices such that (s, v) is an edge of the graph, for the

path wanders from vertex to vertex using edges to define the legal steps. In general,



7 . 1

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



237

S

k+1

consists of the set of vertices adjacent to a



k

that have not been used elsewhere

in the partial solution A.

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

{

int i;


/* counters */

bool in_sol[NMAX];

/* what’s already in the solution? */

edgenode *p;

/* temporary pointer */

int last;

/* last vertex on current path */

for (i=1; i

for (i=1; i

if (k==1) {

/* always start from vertex 1 */

c[0] = 1;

*ncandidates = 1;

}

else



{

*ncandidates = 0;

last = a[k-1];

p = g.edges[last];

while (p != NULL) {

if (!in_sol[ p->y ]) {

c[*ncandidates] = p->y;

*ncandidates = *ncandidates + 1;

}

p = p->next;



}

}

}



We report a successful path whenever a

k

t.

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

{

return (a[k] == t);



}

process_solution(int a[], int k)

{

solution_count ++;



/* count all s to t paths */

}



238

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

The solution vector must have room for all vertices, although most paths

are likely shorter than this. Figure

7.1


shows the search tree giving all paths from

a particular vertex in an example graph.




Download 5,51 Mb.

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