国产探花免费观看_亚洲丰满少妇自慰呻吟_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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 玉树县| 沾益县| 锡林浩特市| 铁岭县| 临泉县| 徐水县| 瑞金市| 长沙县| 永宁县| 双峰县| 南川市| 留坝县| 遂昌县| 龙游县| 寿光市| 平昌县| 宁武县| 博客| 龙泉市| 独山县| 襄樊市| 大化| 厦门市| 称多县| 西城区| 乐安县| 美姑县| 浪卡子县| 榆林市| 盐津县| 岑溪市| 太原市| 定州市| 理塘县| 镇平县| 万州区| 南昌县| 盐津县| 贡觉县| 永登县| 尚志市|