Ta上传的资源 (0)

数据结构中最小生成树kruskal算法 typedef struct { AdjMatrix arc; int vexnum, arcnum; }MGraph; void CreatGraph(MGraph *);//函数申明 void sort(edge* ,MGraph *); void Min