搜索资源列表
smalltree
- 图的最小生成树 【需求分析】 若要在n个城市之间建设通信网络,只需要架设n-1条线路即可。如何以最低的经济代价建设这个通信网,是一个网的最小生成树问题。 (1)建立一个图,其存储方式可以采用邻接矩阵形式,需要定义两个数组,一个存储顶点,一个存储边,存储边的数组表明节点间的连通关系和边的权值; (2)利用普里姆算法和克鲁斯卡尔算法求网的最小生成树; (3)按顺序输出生成树中各条边以及它们的权值。 【算法描述】: 1 普里姆算法:
FFF
- 用Kruskal算法求最小生成树,算法与分析实验-Using Kruskal algorithm for minimum spanning tree, Algorithm and Analysis of Experiments
zuixiaoshengchengshu
- 数据结构中求最小生成树问题,包括头文件和主文件-Minimum spanning tree data structure, including the header files and the master file
primandkruskal-algorithm-
- Kruskal 算法和Prim 算法是求最小生成树的常用算法, 设计了这两种算法的C 语言程序, 并通过实例研究了 这两种算法的实际应用价值。-prim and kruskal algorithm
Kruska
- 编写算法能够建立带权图,并能够用Kruskal算法求该图的最小生成树。-Write an algorithm that can establish a weighted graph, and the ability to use the Kruskal algorithm for minimum spanning tree of the graph.
zhuliu
- 这是一个朱刘算法模版,求有向图的最小生成树,和已有的应该并不相同,因为这个是可以求无实根的。-This is a template Zhu Liu algorithm, seeking a directed graph minimum spanning tree, and there should not be the same, because this can find no real roots.
光纤
- 采用克鲁斯卡尔算法求最小生成树;采用堆排序算法求当前权值最小的边;采用并集树算法判断等价类。当输入校园的布局后,可求得光纤网络的最佳铺设方案。
Dts.359-1.Kruskal
- kruskal算法的C++源码,即求加权连通图的最小生成树的算法。-c++ source of kruskal algorithm.