CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - minimum spanning tree

搜索资源列表

  1. 最小生成树

    0下载:
  2. 最小生成树.rar-minimum spanning tree. Rar
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:39316
    • 提供者:棒棒唐
  1. 最小生成树prim算法

    0下载:
  2. 最小生成树的prim算法 是求图中的最短路径的一个重要算法 但是是O(n2)复杂度的一个算法-minimum spanning tree algorithm is the prim map for the shortest path algorithm of an important but is O (n2) of a complex algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3145
    • 提供者:袁文
  1. Kruskal.cpp

    0下载:
  2. 在权值不同的图中寻找一个最小生成树的问题-different weights in the map to find a minimum spanning tree problem
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3043
    • 提供者:刘通学
  1. 图论常用算法通用matlab程序

    0下载:
  2. 包括最短路及最小生成树算法,对于参加建模很有用的-including the most short-circuit and the minimum spanning tree algorithm, for participating in modeling very useful
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4449
    • 提供者:笑我多情
  1. gfloyd

    0下载:
  2. 本源程序为matlab文件,实现最小生成树和关键路径的查找。-the source document for Matlab and achieve minimum spanning tree and find the critical path.
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:780
    • 提供者:陈芳
  1. kruskal最小生成树实现

    1下载:
  2. 在boost基础上实现 对图的最小生成树实现,通过此算法可以找到此图中连接所有点的最小生成树。-the boost on the basis of the plan to achieve the minimum spanning tree, the algorithm can find this map connect all the points the minimum spanning tree.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2485
    • 提供者:李好
  1. Graph3

    0下载:
  2. 最小生成树的贪心算法实现 普里姆算法 用邻接矩阵进行图的生成-the minimum spanning tree algorithm Primbetov greedy algorithm adjacent matrix chart generation
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1652
    • 提供者:郭靖
  1. 图的操作界面

    0下载:
  2. 图邻接表的建立,深度优先遍历,.广度优先遍历,最小生成树,拓扑排序,单源点到其余各个顶点的最短路径等对图的操作!VC界面!-plans to establish the adjacent table, depth-first traversal. Breadth priority traversal, the minimum spanning tree, topological sorting, single-source all of the rest of the vertices such
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:65237
    • 提供者:陈青侠
  1. Prim_gao

    0下载:
  2. Prim 算法寻找最小生成树,用C语言实现,有完整的注释!-Prim algorithm to find the minimum spanning tree, using C language, a complete Notes!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1432
    • 提供者:gao
  1. tree

    0下载:
  2. 用无向图表示n个城市之间的交通网络建设规划,顶点表示城市,边上的权表示该线路的造价,试设计一个方案,使得这个交通网的总造价最小,即求最小生成树问题。-Undirected graph with n cities that traffic between the network construction plan, the vertices represent the city, right next to that the cost of the line, try to design a pr
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:13476
    • 提供者:wangbo
  1. min-tree

    0下载:
  2. 基于C++的最小生成树算法编写,可以快速生成最小生成树-Write, you can quickly generate a minimum spanning tree based on the minimum spanning tree algorithm in C++
  3. 所属分类:Education soft system

    • 发布日期:2017-03-30
    • 文件大小:1357
    • 提供者:王雪
  1. tree.rar

    0下载:
  2. 数据结构课程设计,关于最小生成树的,希望能帮助大家,挺不错的哈。,Data structure curriculum design, minimum spanning tree, we want to help, very good.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:888615
    • 提供者:zhongqilin
  1. minute-tree

    0下载:
  2. 在一个具有几个顶点的连通图G中,如果存在子图G 包含G中所有顶点和一部分边,且不形成回路,则称G 为图G的生成树,代价最小生成树则称为最小生成树-If there subgraph G ' contains all vertices in G, and part of the side, and does not form a loop, then G' in a few vertices connected graph G is the spanning tree of a gr
  3. 所属分类:matlab

    • 发布日期:2017-11-26
    • 文件大小:17280
    • 提供者:胡古月
  1. least-tree

    0下载:
  2. 利用VC实现的最小生成树算法,可能在VC6.0环境下正常运行-VC to achieve the minimum spanning tree algorithm may VC6.0 environment in normal operation
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-08
    • 文件大小:587026
    • 提供者:葛义强
  1. min-tree

    0下载:
  2. 最小生成树,就是给定一个无向图,挑选若干条边,连成一个树行图(无圈),使得所选边的权至和最小。运用的是Kruskal算法。-Minimum spanning tree, that is, given an undirected graph, choose several edge, into a tree line graph (no ring), making minimal rights to the selected edge
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-16
    • 文件大小:2092
    • 提供者:陆虎
  1. tree

    0下载:
  2. 自己用C++编写的一个简单的关于最小生成树问题的-With C++ prepared for a minimum spanning tree
  3. 所属分类:CSharp

    • 发布日期:2017-11-29
    • 文件大小:1039
    • 提供者:黄灿
  1. min-tree

    0下载:
  2. 最小生成树权值计算的源代码,输入结点个数,和各结点之间用三元法表示的权值,利用算法计算最小生成树-Minimum spanning tree weight calculation of the source code, the right to use the ternary notation of the number of input values ​ ​ between nodes, and each node using the minimum spanning tr
  3. 所属分类:assembly language

    • 发布日期:2017-05-15
    • 文件大小:3770663
    • 提供者:陈怡欣
  1. steiner-base-on-min-tree

    0下载:
  2. xiangx详细介绍了基于最小生成树的施泰纳树问题,还有一种方法是介绍基于最短路径的施泰纳树-xiangx detailing the minimum spanning tree based Steiner tree problem, there is a way to introduce the shortest path based Steiner tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:915
    • 提供者:Lavender
  1. Minimum-Cost-Spanning-Tree

    0下载:
  2. Minimum Cost Spanning Tr-Minimum Cost Spanning Tree
  3. 所属分类:CSharp

    • 发布日期:2017-05-03
    • 文件大小:887709
    • 提供者:haha
  1. TREE

    0下载:
  2. 在visual C++环境中实现图的最小生成树的生成,并实现最小生成树的权重的计算-Heavy computing implemented in visual C++ environment, minimum spanning tree graph generation and achieve the minimum spanning tree right
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1792898
    • 提供者:李噹噹
« 1 2 3 4 56 7 8 9 10 ... 42 »
搜珍网 www.dssz.com