《克鲁斯卡尔算法实验报告(共5页).doc》由会员分享,可在线阅读,更多相关《克鲁斯卡尔算法实验报告(共5页).doc(5页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上实 验 报 告实验原理:Kruskal 算法是一种按照图中边的权值递增的顺序构造最小生成树的方法。其基本思想是:设无向连通网为G(V,E),令G 的最小生成树为T,其初态为T(V,),即开始时,最小生成树T 由图G 中的n 个顶点构成,顶点之间没有一条边,这样T 中各顶点各自构成一个连通分量。然后,按照边的权值由小到大的顺序,考察G 的边集E 中的各条边。若被考察的边的两个顶点属于T 的两个不同的连通分量,则将此边作为最小生成树的边加入到T 中,同时把两个连通分量连接为一个连通分量;若被考察边的两个顶点属于同一个连通分量,则舍去此边,以免造成回路,如此下去,当T 中的
2、连通分量个数为1 时,此连通分量便为G 的一棵最小生成树。如教材153页的图4.21(a)所示,按照Kruskal 方法构造最小生成树的过程如图4.21 所示。在构造过程中,按照网中边的权值由小到大的顺序,不断选取当前未被选取的边集中权值最小的边。依据生成树的概念,n 个结点的生成树,有n1 条边,故反复上述过程,直到选取了n1 条边为止,就构成了一棵最小生成树。实验目的:本实验通过实现最小生成树的算法,使学生理解图的数据结构存储表示,并能理解最小生成树Kruskal 算法。通过练习,加强对算法的理解,提高编程能力。实验内容:(1)假定每对顶点表示图的一条边,每条边对应一个权值;(2)输入每条
3、边的顶点和权值;(3)输入每条边后,计算出最小生成树;(4)打印最小生成树边的顶点及权值。实验器材(设备、元器件):PC机一台,装有C语言集成开发环境。数据结构与程序:#include #include #include using namespace std;#define X 105typedef struct Edgeint w;int x, y; Edge;/储存边的struct,并储存边两端的结点class GraphNodepublic:int data;int father;int child; GraphNodeX;/储存点信息的并查集类(点的值,父结点,子结点)Edge ed
4、geX*X;bool comp(const Edge, const Edge);void update(int);int main()int node_num;int sum_weight = 0;FILE *in = fopen(C:Users瑞奇Desktop编程实验数据结构实验FileTempin.txt, r);cout Reading data from file. endl endl;/cout node_num;fscanf(in, %d, &node_num);/cout Please input the data of each node: endl;for(int i =
5、1;i GraphNodei.data;fscanf(in, %d, &GraphNodei.data);GraphNodei.father = GraphNodei.child = i;/初始化点集/cout Please input the relation between nodes in this format and end with (0 0 0): endl (first_node second_node egde_weight) x y w & w)while(fscanf(in, %d%d%d, &x, &y, &w) != EOF & w)edgetmp_cnt.w = w
6、, edgetmp_cnt.x = x, edgetmp_cnt+.y = y;fclose(in);sort(edge+1, edge+tmp_cnt, comp);/对边权进行排序cout The MinSpanTree contains following edges: endl endl;for(int i = 1;i = tmp_cnt;i+)/循环找最小边if(GraphNodeedgei.x.father != GraphNodeedgei.y.father)int n = edgei.x;int m = n;if(GraphNodem.father != m)/使用并查集对边是
7、否可用进行判断m = GraphNodem.father;GraphNodem.father = GraphNodeedgei.y.father;GraphNodeedgei.x.father = GraphNodeedgei.y.father;GraphNodeedgei.y.child = GraphNodeedgei.x.child;while(GraphNoden.child != n)n = GraphNoden.child;update(n);/在合并点集后对并查集进行更新sum_weight += edgei.w;/计算总权cout t The edge between Grap
8、hNodeedgei.x.data & GraphNodeedgei.y.data with the weight edgei.w endl;cout endl And the total weight of the MinSpanTree add up to: sum_weight endl;return 0;bool comp(const Edge a, const Edge b)return a.w b.w;void update(int n)if(GraphNoden.father = n)return;GraphNodeGraphNoden.father.child = GraphN
9、oden.child;/更新孩子结点update(GraphNoden.father);/递归更新GraphNoden.father = GraphNodeGraphNoden.father.father;/更新父结点程序运行结果:运行程序,程序读取文件,获取文件中关于图的信息:结点数,结点值,结点间边权。然后使用Kruskal算法对录入信息进行处理:1. 对边权排序2. 取最小权边,若边的端结点不在同一集合众,则使边的端结点加入集合并删除该边;若边的端结点本来就在同一集合中,直接删除该边3. 循环执行步骤2,直到集合中包含所有结点和结点数-1条边输入为:61 2 3 4 5 61 2 61 3 11 4 52 3 52 5 33 4 53 5 63 6 44 6 25 6 6程序运行结果如下图:实验结论:Kruskal算法其实是一种贪心算法,每次选取符合条件的边,加入边集(此程序中直接输出)。直到所有结点和最少边全部包含在同一集合中,算法结束。总结及心得体会:在使用并查集的时候,注意在合并集合后要更新并查集的父结点和子结点。其实Kruskal算法的复杂度为O(E2),其复杂度和边条数有关,和结点数无关,所以适用于稀疏图。专心-专注-专业
限制150内