摘要: 1 #include 2 using namespace std ; 3 4 #define MAXVERTEXNUM 100 5 struct Graph 6 { 7 int VertexNum ; 8 char Vertex[MAXVERTEXNUM] ; 9 int AdjMatrix[MAXVERTEXNUM][MAXVERTEXNUM... 阅读全文
posted @ 2016-11-09 23:28 maoguy 阅读(5278) 评论(0) 推荐(0) 编辑