算法核心思想: Prim算法代码: #define INF 32767 //INF表示∞ void Prim(MatGraph g,int v) { int lowcost[MAXV]; //顶点i是否在U中 int min; int closest[MAXV],i,j,k; for (i=0;i