无向图的邻接矩阵(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
相关文章
相关标签/搜索