圖:在鄰接矩陣上實現拓撲排序(C語言)

拓撲排序:數組 用於排列事件發生的順序,也可判斷圖中是否有環。code 代碼實現:blog #include<stdio.h> #include<stdlib.h> #define MaxVexNum 50 #define MaxInt 32767 #define MaxEdgeNum 50 //鄰接矩陣 typedef int VertexType; typedef int EdgeType;
相關文章
相關標籤/搜索