Welcome![Sign In][Sign Up]
Location:
Search - prim

Search list

[Data structsFac4_6_2

Description: 最小生成树问题贪心(Prim)算法,该程序原自王晓东算法设计,程序已调通-Greedy minimum spanning tree problem (Prim) algorithm, the program Xiaodong algorithm since the original design, procedures have been transferred Qualcomm
Platform: | Size: 1024 | Author: ss | Hits:

[Data structsreport+of+Algorithm

Description: 算法设计的实验报告 包括Bottom-Up Merge Sorting算法、插入排序算法Heaps的创建堆、堆排序算法、按秩合并算法以及带路径压缩算法、实现查找第K小元素算法、实现快速排序算法、实现平面内最接近点对算法、实现最长公共子序列算法、实现矩阵链相乘算法、实现0/1背包问题算法、实现Dijistra’s算法、Prim算法、Kruskal算法、文件压缩算法-Experimental Algorithm Design Report including Bottom-Up Merge Sorting Algorithm, Insertion Sort algorithm creation Heaps Heap, Heap Sort algorithm, according to rank and merge algorithm with path compression algorithm to find the first small element K algorithm, the realization of quick sort algorithm, the realization of planar within the nearest point on the algorithm to achieve the longest common sub-sequence algorithm, the realization of matrix-chain multiplication algorithm, the realization of 0/1 knapsack problem algorithm Dijistra s algorithm, Prim algorithm, Kruskal algorithm, file compression algorithm
Platform: | Size: 28672 | Author: 苏宁 | Hits:

[Data structsPRIM

Description: PRIM算法 对任意给定的网和起点,用PRIM算法的基本思想求解出所有的最小生成树。-PRIM algorithm for any given network and the starting point, PRIM algorithm used to solve the basic idea of all the minimum spanning tree.
Platform: | Size: 613376 | Author: 易涛 | Hits:

[JSP/JavaPractica3

Description: Easy implementation of PRIM and DIJKSTRA algorims for graph sorting. It also permit comparison of time betwen both algoritm.
Platform: | Size: 994304 | Author: Edu | Hits:

[Windows Developprim

Description: 求素数的源代码,用c语言写的,代码中算法要求较高-how to find the prim number
Platform: | Size: 1024 | Author: 殷勇 | Hits:

[Data structsPrim

Description: Prim最小生成树 Prim最小生成树-PrimPrimPrimPrimPrimPrimPrimPrimPrimPrimPrimPrim
Platform: | Size: 1024 | Author: huangdong | Hits:

[Data structsprim

Description: 本源码可供数据结构的初学者借鉴,叫最小生成树prim算法-The source for the data structure from the beginners, called minimum spanning tree algorithm prim
Platform: | Size: 7168 | Author: 郑海洋 | Hits:

[Mathimatics-Numerical algorithmsprim

Description: 本程序是用来prim算法用C++的完全实现,可供大家学习使用.-This procedure is used prim algorithm using C++ implementation of the fully available for everyone to use study.
Platform: | Size: 280576 | Author: xj | Hits:

[GUI DevelopPrim

Description: 数据结构里的prim树的实现,有兴趣的朋友可以看看。-Data structure to achieve the prim tree, friends who are interested can look at.
Platform: | Size: 321536 | Author: 林婷 | Hits:

[Data structsPrim

Description: 数据结构学习过程中的实验 PRIM算法,简单了一点,但算法是很经典的-Data structure of the experimental learning process PRIM algorithm, a bit simple, but the algorithm is a classic
Platform: | Size: 1024 | Author: 陈文取 | Hits:

[Otherprim

Description: prim算法构造最小生成树,调试通过,c++语言编写。-Minimum Spanning Tree Algorithm prim, debugging through, c++ languages.
Platform: | Size: 1024 | Author: zhlohi | Hits:

[Data structsprim

Description: 普里姆算法,求图的最小生成树问题。用的是C语言,比书上的详细。-Prim algorithm, and the minimum spanning tree problem Fig. Using the C language, the detailed than the book.
Platform: | Size: 1024 | Author: 熊龙龙 | Hits:

[matlabshortestpath

Description: 这个算法通过matlab仿真得到的最小生成树Prim算法-Matlab simulation of the algorithm obtained Prim minimum spanning tree algorithm
Platform: | Size: 3072 | Author: 甄伟 | Hits:

[AI-NN-PRmintreePrim

Description: Dandn文件给出了输入参数的名称及格式 即在调用prim前先输入邻接矩阵D和节点个数n 输入prim 得到两行的矩阵T,将上下两行数字对应的节点相连即可-Dandn document gives the name of the input parameters and format Prim in the call prior to the importation of adjacency matrix D and the node number n Input prim Be two lines of the matrix T, the upper and lower figures correspond to two lines connected to the node
Platform: | Size: 1024 | Author: lili | Hits:

[CSharpprim

Description:   对于网络,其生成树中的边也带权,将生成树各边的权值总和称为生成树的权,并将权值最小的生成树称为最小生成树(Minimun Spanning Tree),简称为MST。   Prim算法的基本思想是:   (1) 在图G=(V, E) (V表示顶点 ,E表示边)中,从集合V中任取一个顶点(例如取顶点v0)放入集合 U中,这时 U={v0},集合T(E)为空。   (2) 从v0出发寻找与U中顶点相邻(另一顶点在V中)权值最小的边的另一顶点v1,并使v1加入U。即U={v0,v1 },同时将该边加入集合T(E)中。   (3) 重复(2),直到U = V为止。 -prim
Platform: | Size: 177152 | Author: zc | Hits:

[OtherGraphTheory

Description: 自己写的图论的一些基本算法,有找关键路径,最短生成树,Prim算法-On their own plans to write some of the basic algorithm, there is to find the critical path, minimum spanning tree, Prim algorithm, etc.
Platform: | Size: 911360 | Author: silence.simon | Hits:

[CSharpPrim

Description: prim算法是常用的一种解决最小生成树问题的算法-There are three reasons for the changes that have taken place in our life.Firstly,people s living standard has been greatly improved.Secondly,most people are well paid, and they can afford what they need or like.Last but not least,more and more people prefer to enjoy modern life.
Platform: | Size: 1024 | Author: 邓涛 | Hits:

[VC/MFCPRIM

Description: 对图求最小支撑树。利用prim算法,并判断图是否连通,如果连通则打印最小支撑树顶点,否则打印不连通。
Platform: | Size: 1024 | Author: uilnij | Hits:

[CSharpshortest

Description: 实现中国铁路最短路径的计算,基于图的PRIM算法,MFC实现动态演示-China Railway the shortest path to achieve the calculation of the PRIM algorithm based on the map, MFC dynamic presentation
Platform: | Size: 1961984 | Author: zhangyan | Hits:

[Data structsPrim-Kruskal-Dijkstra

Description: 数据结构课程设计据结构课程设计范例\Prim-Kruskal-Dijkstra.rar-Data structure, according to the structure of curriculum design curriculum design examples \ Prim-Kruskal-Dijkstra.rar
Platform: | Size: 44032 | Author: zhang fei | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 33 »

CodeBus www.codebus.net