无向图邻接矩阵构建最小生成树时调用的求最小耗费的函数有错
prime算法里有一个求最短路径的MidEdge函数,我自己写的函数输出的全为0,不知道为什么 templatevoid MGraph::Prim(MGraph G){ for (int i = 1; i < …
图的深度遍历没有进入递归函数
#include using namespace std; const int MaxSize = 10; template class MGraph{ public : MGraph(T a[], int n, int e);//n个顶点e条边 void DFSTr…
- 共 1 页
- 1