無向圖的鄰接矩陣(adjacency matrix)

MGraph.h #ifndef __MGRAPH_H__ #define __MGRAPH_H__ const int MaxSize = 10; template <class T> class MGraph { public: MGraph(T _maxtrix[], int _vertex, int _edge); ~MGraph(); public: void DFSTrave
相關文章
相關標籤/搜索