国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Kruskal算法的C語言程序

2019-11-11 05:18:48
字體:
來源:轉載
供稿:網友

Kruskal算法是有關圖的最小生成樹的算法。Kruskal算法是兩個經典的最小生成樹算法之一,另外一個是

百度百科:Kruskal算法。

維基百科:Kruskal's Algorithm。

C語言程序(去除了原文中非標準的C語言代碼):

#include<stdio.h>#include<stdlib.h>int i,j,k,a,b,u,v,n,ne=1;int min,mincost=0,cost[9][9],parent[9];int find(int);int uni(int,int);int main(){    printf("/n/tImplementation of Kruskal's algorithm/n");    printf("/nEnter the no. of vertices:");    scanf("%d",&n);    printf("/nEnter the cost adjacency matrix:/n");    for(i=1;i<=n;i++)    {        for(j=1;j<=n;j++)        {            scanf("%d",&cost[i][j]);            if(cost[i][j]==0)                cost[i][j]=999;        }    }    printf("The edges of Minimum Cost Spanning Tree are/n");    while(ne < n)    {        for(i=1,min=999;i<=n;i++)        {            for(j=1;j <= n;j++)            {                if(cost[i][j] < min)                {                    min=cost[i][j];                    a=u=i;                    b=v=j;                }            }        }        u=find(u);        v=find(v);        if(uni(u,v))        {            printf("%d edge (%d,%d) =%d/n",ne++,a,b,min);            mincost +=min;        }        cost[a][b]=cost[b][a]=999;    }    printf("/n/tMinimum cost = %d/n",mincost);}int find(int i){    while(parent[i])    i=parent[i];    return i;}int uni(int i,int j){    if(i!=j)    {        parent[j]=i;        return 1;    }    return 0;}運行結果:

	Implementation of Kruskal's algorithmEnter the no. of vertices:6Enter the cost adjacency matrix:0 3 1 6 0 03 0 5 0 3 01 5 0 5 6 46 0 5 0 0 20 3 6 0 0 60 0 4 2 6 0The edges of Minimum Cost Spanning Tree are1 edge (1,3) =12 edge (4,6) =23 edge (1,2) =34 edge (2,5) =35 edge (3,6) =4	Minimum cost = 13


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 五指山市| 比如县| 剑河县| 虎林市| 奉贤区| 元江| 吴堡县| 大埔县| 嘉定区| 盐津县| 灌云县| 乐山市| 阜平县| 锡林郭勒盟| 宜都市| 三河市| 香河县| 宕昌县| 临湘市| 永吉县| 疏附县| 红安县| 舒兰市| 天等县| 呼和浩特市| 盈江县| 应城市| 垫江县| 辽宁省| 东平县| 闸北区| 新绛县| 胶州市| 郸城县| 芒康县| 牙克石市| 漾濞| 商水县| 进贤县| 河东区| 泉州市|