The Algorithm Design Manual Second Edition



Download 5,51 Mb.
Pdf ko'rish
bet140/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   136   137   138   139   140   141   142   143   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

Implementation

Our breadth-first search implementation bfs uses two Boolean arrays to maintain

our knowledge about each vertex in the graph. A vertex is discovered the first time

we visit it. A vertex is considered processed after we have traversed all outgoing

edges from it. Thus, each vertex passes from undiscovered to discovered to processed

over the course of the search. This information could have been maintained using

one enumerated type variable, but we used two Boolean variables instead.

bool processed[MAXV+1];

/* which vertices have been processed */

bool discovered[MAXV+1];

/* which vertices have been found */

int parent[MAXV+1];

/* discovery relation */

Each vertex is initialized as undiscovered:

initialize_search(graph *g)

{

int i;



/* counter */

for (i=1; i<=g->nvertices; i++) {

processed[i] = discovered[i] = FALSE;

parent[i] = -1;

}

}

Once a vertex is discovered, it is placed on a queue. Since we process these



vertices in first-in, first-out order, the oldest vertices are expanded first, which are

exactly those closest to the root:

bfs(graph *g, int start)

{

queue q;



/* queue of vertices to visit */

int v;


/* current vertex */

int y;


/* successor vertex */

edgenode *p;

/* temporary pointer */

init_queue(&q);

enqueue(&q,start);

discovered[start] = TRUE;




164

5 .


G R A P H T R A V E R S A L

while (empty_queue(&q) == FALSE) {

v = dequeue(&q);

process_vertex_early(v);

processed[v] = TRUE;

p = g->edges[v];

while (p != NULL) {

y = p->y;

if ((processed[y] == FALSE) || g->directed)

process_edge(v,y);

if (discovered[y] == FALSE) {

enqueue(&q,y);

discovered[y] = TRUE;

parent[y] = v;

}

p = p->next;



}

process_vertex_late(v);

}

}


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   136   137   138   139   140   141   142   143   ...   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