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

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

Kruskal算法的C語言程序

2019-11-11 03:48:24
字體:
來源:轉載
供稿:網友

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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 凉城县| 绥中县| 黄山市| 卢氏县| 南郑县| 贵德县| 揭东县| 长治市| 三河市| 商城县| 马关县| 东宁县| 亳州市| 密山市| 大同市| 昌平区| 肃南| 陕西省| 牙克石市| 伊通| 北碚区| 夏津县| 共和县| 大余县| 兴仁县| 香港 | 明溪县| 红安县| 涿鹿县| 江山市| 行唐县| 拉孜县| 上林县| 乌审旗| 美姑县| 博乐市| 京山县| 湘乡市| 远安县| 宜城市| 汝州市|