/* prim.c */ /* Prim算法*/ typedef char VexType; typedef float AdjType; typedef struct { int n; /* 图的顶点个数 */ VexType *vexs; /* 顶点信息 */ AdjType *arcs[]; /* 边信息 */ }GraphMatrix; typedef struct{ int start_