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

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Kruskal算法的C語言程序

2019-11-11 03:48:27
字體:
供稿:網(wǎng)友

Kruskal算法是有關(guān)圖的最小生成樹的算法。Kruskal算法是兩個(gè)經(jīng)典的最小生成樹算法之一,另外一個(gè)是

百度百科:Kruskal算法。

維基百科:Kruskal's Algorithm。

C語言程序(去除了原文中非標(biāo)準(zhǔn)的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;}運(yùn)行結(jié)果:

	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


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 竹山县| 隆化县| 紫阳县| 古丈县| 磴口县| 凤山市| 郁南县| 诏安县| 涟水县| 清河县| 重庆市| 龙口市| 清水县| 同仁县| 确山县| 海晏县| 洛南县| 成都市| 夹江县| 开阳县| 芜湖县| 卓资县| 莱西市| 东乡| 遂溪县| 松溪县| 开平市| 扶绥县| 通海县| 郯城县| 新乡县| 福泉市| 双桥区| 曲麻莱县| 常州市| 贵德县| 藁城市| 龙口市| 柘城县| 武山县| 梅州市|