最小生成树的 Kruskal算法 #include #include #include #define N 300 struct node { int x; int y; int value; }; int father[N]; int cmp(const void *a,const void *b) { return (struct n