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

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

Kruskal算法的C語言程序

2019-11-11 03:15:27
字體:
來源:轉載
供稿:網友

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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 湛江市| 大宁县| 武穴市| 阳朔县| 黄山市| 渭源县| 宝坻区| 乡城县| 齐河县| 霍城县| 孟州市| 沙洋县| 深州市| 澳门| 民和| 黄浦区| 临沧市| 温州市| 旺苍县| 新蔡县| 工布江达县| 垦利县| 山东省| 永登县| 揭阳市| 滕州市| 惠安县| 万宁市| 会泽县| 宣汉县| 汉中市| 湾仔区| 隆尧县| 沽源县| 佛坪县| 海盐县| 安福县| 吉木萨尔县| 永顺县| 江安县| 犍为县|