第十三周專案5 拓撲排序演算法驗證

2021-07-25 05:49:25 字數 1151 閱讀 8743

問題及**:

/*     

* 檔名稱:專案.cpp

* 作 者:陳哲

* 完成日期:2023年12月8日

* 版 本 號:v1.0

*問題描述:驗證拓撲排序演算法

*輸入描述:無

*程式輸出:測試資料

*/

標頭檔案graph.h和原始檔graph.cpp**詳見圖的演算法庫

測試圖如下:

主函式main.cpp**:

#include #include #include "graph.h"

void topsort(algraph *g)

}for (i=0; in; i++)

if (g->adjlist[i].count==0) //入度為0的頂點進棧

while (top>-1) //棧不為空時迴圈

p=p->nextarc; //找下乙個相鄰頂點}}

}int main()

, ,,,

,,};arraytolist(a[0], 7, g);

dispadj(g);

printf("\n");

printf("拓撲序列:");

topsort(g);

printf("\n");

return 0;

}

運算結果:

知識點總結:

拓撲排序演算法,如果邊是圖的邊即從頂點vi到頂點vj有一條路徑,則在序列中頂點vi必須排在頂點vj的前面。

學習心得:

第十三周專案5拓撲排序演算法驗證

問題及描述 輸出描述 graph.h ifndef graph h included define graph h included define maxv 100 最大頂點個數 define inf 32767 inf表示 typedef int infotype 以下定義鄰接矩陣型別 typed...

第十三周專案5 拓撲排序演算法驗證

煙台大學計算機與控制工程學院 作 者 鄒曉琳 完成日期 2016年11月18日 問題描述 拓撲排序 1.graph.h define maxv 100 最大頂點個數 define inf 32767 inf表示 typedef int infotype 以下定義鄰接矩陣型別 typedef stru...

第十三周 專案5 拓撲排序演算法驗證

問題描述及 煙台大學計控學院 作 者 張曉彤 完成日期 2016年11月24日 問題描述 拓撲排序 include include include graph.h void topsort algraph g for i 0 in i if g adjlist i count 0 入度為0的頂點進棧...