CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 最短路径算法

搜索资源列表

  1. The-shortest-path-bellman-ford

    0下载:
  2. 在实际问题中,边的权值一般以正权的形式出现,但是很多情况下负权也是存在的。这个时候,最短路径不一定存在。我们无法得到像dijkstra算法那样时间复杂度较低的算法,但是,仍然可以用bellman-ford迭代算法去解决问题。 bellman-ford算法是迭代算法,它不像dijkstra算法,按照一定的顺序直接算出每个点的距离值,而是不断地修改每个点的当前最小距离值,直到求出真正的最短距离为止。 -In practical problems, the edge weight is gen
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:13909
    • 提供者:liuyunyang
  1. Dijkstra(JAVA)

    0下载:
  2. 最短路径Dijkstra算法(JAVA)-Dijkstra JAVA
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1342
    • 提供者:panther
  1. Dijkstra--cSharp

    0下载:
  2. 利用C#语言实现最短路径dijkstra算法-use C# to implement dijkstra algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:10886
    • 提供者:
  1. Kruskal

    0下载:
  2. 最小生成树算法,是从图论角度分析树的形成,并寻找最短路径的算法。- 英语 中文(简体) 日语 The minimum spanning tree algorithm is the formation of the parse tree from the perspective of graph theory, and f
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6042
    • 提供者:小许
  1. Bellmanford

    0下载:
  2. Bellmanford最短路径设计实现,可作为算法学习的参考代码,VC下运行-bellmanford algorithm implementation can run in VC
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:542118
    • 提供者:shine
  1. Floyd

    0下载:
  2. Floyd的参考算法,采用三层循环,依次比较各个距离,得到各点之间的最短距离,是最短路径规划中的基础算法-Floyd reference algorithm, using the three-cycle in order to compare each distance, the shortest distance between points, is the basis of the shortest path planning algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2568247
    • 提供者:chen
  1. longdistanse

    0下载:
  2. 最短路径问题是图论研究中的一个经典算法问题, 旨在寻找图(由结点和路径组成的)中两结点之间的最短路径。 算法具体的形式包括:   确定起点的最短路径问题 - 即已知起始结点,求最短路径的问题。   确定终点的最短路径问题 - 与确定起点的问题相反,该问题是已知终结结点,求最短路径的问题。在无向图中该问题与确定起点的问题完全等同,在有向图中该问题等同于把所有路径方向反转的确定起点的问题。   确定起点终点的最短路径问题 - 即已知起点和终点,求两结点之间的最短路径- A spanning tr
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:556
    • 提供者:wangzhongwei
  1. graehl

    0下载:
  2. K最短路径eppstein算法的C语言实现-k shortest path eppstein algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:9942
    • 提供者:马可
  1. ShortPath

    0下载:
  2. 这个是一个求最短路径的程序,程序应用了地杰克斯拉算法-This is one of the shortest path procedures, the procedures applied to Dijksla algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:257543
    • 提供者:钟西泽
  1. Astar

    0下载:
  2. a*算法解决8数码问题。在游戏设计中,经常要涉及到最短路径的搜索,现在一个比较好的方法就是用A*算法进行设计。他的好处我们就不用管了,反正就是好!^_*-a star
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:29093
    • 提供者:chao
  1. Dijstra-Algorithm

    0下载:
  2. 迪杰斯特拉算法,也就是最短路径树的算法之一,通过连续的松弛操作完成搜寻最短路径树的任务-Dijkstra Algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:537050
    • 提供者:
  1. data-structure-Graph

    1下载:
  2. 本软件围绕无向图的应用这一主题,用图形化的界面实现了无向图的建立、显示邻接表、动态构造最小生成树(分别利用Prim算法和Kruscal算法)、查找最短路径等功能。 具体功能: 给定一个图,完成: (1) 建立并显示出它的邻接链表 (2) 分别用普里姆算法和克鲁斯卡尔算法构造其最小生成树,随时显示其构造的过程 (3) 给出某一确定顶点到所有其他顶点的最短路径 (4) 给出每一对顶点之间的最短路径 说明:程序开发时所用的文件和源码在文件夹“配套文件”中提供。另附说明
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:3050480
    • 提供者:lsc
  1. lvyouzuiduanluxian

    0下载:
  2. 旅游交通路线的最短路径问题,使用了迪克斯特拉算法。通过文件进行读入数据。-Tourist traffic routes, the shortest path problem, the Dick Stella algorithm. Read into the data file.
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:340687
    • 提供者:唐佳伟
  1. shortest

    0下载:
  2. 使用最短路算法编写的一个铁路系统程序,自动计算两个站点间的最短路径-Use the most short circuit algorithm of a railway system written procedures, automatic calculation of two site of the shortest path between
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:2035460
    • 提供者:huyong
  1. Floyd

    0下载:
  2. 数据结构中的最短路径问题,弗洛依德算法,能求出各个点到其他各个点的最短路径-The shortest path problem in the data structure of the Floyd algorithm can solve for each point to point shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:209883
    • 提供者:tom
  1. JDijkstra

    0下载:
  2. Dijkstra:: 最短路径之Dijkstra算法-Dijkstra Algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1136
    • 提供者:jichen
  1. danyuanzuiduanlujing

    0下载:
  2. 用VC实现的单元最短路径,非常适合学习算法,简洁易懂-the procedure used to plan for the shortest path modules, allowing users to input dynamic map
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:25092
    • 提供者:古灵
  1. algorithm

    0下载:
  2. 各种经典问题的求解方法,如N皇后问题回溯算法,动态计算网络最长最短路线,货郎担限界算法,网络最短路径Dijkstra算法-All kinds of classic problem solving methods, such as N queen problem back in the algorithm, the dynamic calculation longest shortest route network, HuoLangDan gauge algorithm, the network
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:23449
    • 提供者:guang
  1. Floyd1

    0下载:
  2. Floyd算法,Floyd算法又称为弗洛伊德算法,插点法,是一种用于寻找给定的加权图中顶点间最短路径的算法-Floyd algorithm, the Floyd algorithm, also known as Freud algorithm, interpolation point method is used to find a given weighted graph between vertices shortest path algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:23668
    • 提供者:yx
  1. dij

    0下载:
  2. dijkstra单源最短路径源代码模板,迪杰斯特拉算法-the short path
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:602
    • 提供者:黄银锋
« 1 2 ... 21 22 23 24 25 2627 28 29 30 31 32 »
搜珍网 www.dssz.com