The Algorithm Design Manual Second Edition



Download 5,51 Mb.
Pdf ko'rish
bet146/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   142   143   144   145   146   147   148   149   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

Implementation

A depth-first search can be thought of as a breadth-first search with a stack instead

of a queue. The beauty of implementing dfs recursively is that recursion eliminates

the need to keep an explicit stack:

dfs(graph *g, int v)

{

edgenode *p;



/* temporary pointer */

int y;


/* successor vertex */

if (finished) return;

/* allow for search termination */

discovered[v] = TRUE;

time = time + 1;

entry_time[v] = time;

process_vertex_early(v);

p = g->edges[v];

while (p != NULL) {

y = p->y;

if (discovered[y] == FALSE) {

parent[y] = v;

process_edge(v,y);

dfs(g,y);

}

else if ((!processed[y] && (parent[v]! = y)) || (g->directed))



process_edge(v,y);


172

5 .


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

Depth-first search use essentially the same idea as backtracking, which we study

in Section

7.1


(page

231


). Both involve exhaustively searching all possibilities by ad-

vancing if it is possible, and backing up as soon as there is no unexplored possibility

for further advancement. Both are most easily understood as recursive algorithms.

Take-Home Lesson: DFS organizes vertices by entry/exit times, and edges

into tree and back edges. This organization is what gives DFS its real power.




Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   142   143   144   145   146   147   148   149   ...   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