程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 九度教程第74題

九度教程第74題

編輯:C++入門知識

C語言源碼: [cpp]   #include<stdio.h>   #include<stdlib.h>   #define maxsize 110   typedef struct edge   {       int a,b;       int weight;   }edge;   edge E[maxsize];   int T[maxsize];   int findroot(int x)   {       int temp;       if(T[x]==-1)           return x;       else       {           temp=findroot(T[x]);           T[x]=temp;           return temp;       }   }   int cmp(const void *a,const void *b)   {       edge *aa=(edge *)a;       edge *bb=(edge *)b;       return aa->weight-bb->weight;   }   int main()   {       int n,m,weight,i,num,roota,rootb;       scanf("%d %d",&n,&m);       while(n)       {           for(i=0;i<n;i++)               scanf("%d %d %d",&E[i].a,&E[i].b,&E[i].weight);           qsort(E,n,sizeof(E[0]),cmp);           for(i=1;i<=m;i++)               T[i]=-1;           weight=0;           num=0;           for(i=0;i<n;i++)           {               roota=findroot(E[i].a);               rootb=findroot(E[i].b);               if(roota!=rootb)               {                   T[rootb]=roota;                   weight+=E[i].weight;               }           }           for(i=1;i<=m;i++)               if(T[i]==-1)                   num++;           if(num>1)               printf("?\n");           else               printf("%d\n",weight);           scanf("%d %d",&n,&m);       }   }    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved