C++實現圖(鄰接矩陣)

1 #include<iostream> 2 3 #define Max 20 4 using namespace std; 5 6 class Vertex 7 { 8 public: 9 Vertex(char lab) {Label=lab;} 10 private: 11 char Label; 12 }; 13 14 15 class Graph
相關文章
相關標籤/搜索