数据结构图最小树GraphPrim矩阵实现
// 图的相邻矩阵表示方法#include <iostream.h>#include <queue>#define UNVISITED 0#define VISITED 1#define INF
数据结构图最小树GraphPrim矩阵实现