摘要: #include<iostream>#include<algorithm>using namespace std;//int edge[110][110];int flag[110];int p[110];struct node{ int start; int end; int cost;};node edge[10010];int cmp(const node& c,const node& d){ return c.cost<d.cost;}int FindSet(int x){ int temp=p[x]; if(x!=p[x]) p[x]=F 阅读全文
posted @ 2011-06-10 20:33 张兰云 阅读(272) 评论(0) 推荐(0) 编辑