圖的建立與遍歷(C++)

最近複習到了數據結構中的圖這一章,隨手整理了些圖的建立與遍歷的完整代碼,以下所示:node #include using namespace std; #define maxSize 100 typedef struct { int no; //頂點編號 char info; //頂點其餘信息 }VertexType; typedef struct { int edges[maxSi
相關文章
相關標籤/搜索