數據結構之無向圖基本操做(採用鄰接矩陣存儲)—整理嚴蔚敏數據結構

//無向圖的鄰接表存儲實現圖的基本操做 #include<iostream> using namespace std; #define MAXVEX 100 typedef char VexType; typedef struct ArcNode { int adjvex; ArcNode *pNextArc; }ArcNode; typedef struct VexNode { Vex
相關文章
相關標籤/搜索