CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 搜索资源 - dijkstra最短路径算法

搜索资源列表

  1. 北京交通大学校园旅游导航系统

    0下载:
  2. 北京交通大学校园旅游导航系统,利用Dijkstra算法在任意两点之间找到最短路径。-Beijing Jiaotong University Campus Tourism navigation systems, the use of arbitrary Dijkstra algorithm to find the shortest between the two paths.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:307.93kb
    • 提供者:陈勋
  1. MySeg

    0下载:
  2. 最短路径法分词程序。将中文句子经过原子切分后生成一个有向无环图,然后使用Dijkstra算法求出由起点到终点的最短路径以实现中文分词。-shortest path method participle procedures. Chinese Sentence will be read after splitting atoms generated a directed acyclic graph. then use the Dijkstra algorithm derived from the s
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:416.5kb
    • 提供者:周景荣
  1. FLoyrC

    0下载:
  2. 在图论中经常会遇到这样的问题,在一个有向图里,求出任意两个节点之间的最短距离。我们在离散数学、数据结构课上都遇到过这个问题,在计算机网络里介绍网络层的时候好像也遇到过这个问题,记不请了... 但是书本上一律采取的是Dijkstra算法,通过Dijkstra算法可以求出单源最短路径,然后逐个节点利用Dijkstra算法就可以了。不过在这里想换换口味,采取Robert Floyd提出的算法来解决这个问题。下面让我们先把问题稍微的形式化一下
  3. 所属分类:语音合成与识别

    • 发布日期:2014-01-16
    • 文件大小:1.08kb
    • 提供者:victor
  1. Floyd-Warshall-c-chengxi

    0下载:
  2. Floyd-Warshall算法描述 1)适用范围: a)APSP(All Pairs Shortest Paths) b)稠密图效果最佳 c)边权可正可负 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法结
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:3.48kb
    • 提供者:江晨
  1. tuzuixiaolujin

    1下载:
  2. 加权有向图的最短路径实现 Dijkstra算法
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:11.01kb
    • 提供者:CHENG
  1. dijkstra

    0下载:
  2. Dijkstra算法是典型最短路算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。Dijkstra算法能得出最短路径的最优解,-Dijkstra' s algorithm is a typical shortest path algorithm used to calculate a node to all other nodes of the shortest path. Main features is the starting
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-07
    • 文件大小:6.12kb
    • 提供者:刘旭
  1. Graph

    1下载:
  2. 图的基类以及最短路径算法,dijkstra,floyd,Kruskal算法等,代码来自北大赵海燕老师编著的数据结构与算法。-Graph base class as well as the shortest path algorithm, dijkstra, floyd, Kruskal algorithm, code Zhao Haiyan teachers from Beijing University and edited by the data structure and algorith
  3. 所属分类:source in ebook

    • 发布日期:2016-05-10
    • 文件大小:41.79kb
    • 提供者:张淼
  1. managemant_enquire

    0下载:
  2. 传统的Dijkstra 算法无疑是解决一般最短路径问题的最优算法,但接下来我们会看到传统的Dijkstra 算法在公交查询系统是不适合的。而我据对公交乘客出行心理调查的统计结果,指出换乘次数最少是乘客出行时考虑的首要因素,所以这里提出一种基于换乘次数最少的公交最短路径算法。 至于公交车的调度,需要同时考虑到公车公司和乘客的利益,必须尽量在满足双方的利益上做出合理的调度。所以这是一个多目标最优的问题。- management
  3. 所属分类:source in ebook

    • 发布日期:2017-05-02
    • 文件大小:520.7kb
    • 提供者:batilei
  1. S6_Dij

    0下载:
  2. Dijkstra算法,求有向网中任一点到其余各点的最短路径-Dijkstra' s algorithm, find the shortest path to the network at any point to the remaining points
  3. 所属分类:source in ebook

    • 发布日期:2017-11-25
    • 文件大小:1.62mb
    • 提供者:于洁
  1. DIJ-final

    0下载:
  2. 最短路径迪杰斯特拉算法,是我们课程设计的作业-The shortest path Dijkstra algorithm, our curriculum design jobs
  3. 所属分类:ELanguage

    • 发布日期:2017-11-08
    • 文件大小:263.07kb
    • 提供者:潘妮儿
  1. dijkstra

    0下载:
  2. c++版本的最短路径算法 希望能帮到帮到初学者 里面有解释-the version of c++ the shortest path algorithm hope that help to help beginners which explained
  3. 所属分类:source in ebook

    • 发布日期:2017-12-10
    • 文件大小:1.48kb
    • 提供者:李峰
  1. short

    0下载:
  2. C语言最短路径 迪杰斯特拉算法MFC VC-Dijkstra shortest path MFC VC++
  3. 所属分类:assembly language

    • 发布日期:2017-04-05
    • 文件大小:494.1kb
    • 提供者:邱铭
  1. MINROUTE

    0下载:
  2. 用于解决最短路径问题的算法被称做“最短路径算法”, 有时被简称作“路径算法”。 最常用的路径算法有: Dijkstra算法-The shortest path algorithm is used to solve the problem is called the " shortest path algorithm," sometimes referred to as a " path algorithm." The most common path al
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:841byte
    • 提供者:若相见
  1. shortestPath

    0下载:
  2. dijkstra最短路径求解。floyd算法。-dijkstra Shortest Path Problem. floyd algorithms.
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:969byte
    • 提供者:henry
  1. Dijkstra迪捷斯特拉算法

    0下载:
  2. 迪杰斯特拉算法是从一个顶点到其余各顶点的最短路径算法,解决的是有向图中最短路径问题。迪杰斯特拉算法主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。(The Dijkstra algorithm is the shortest path algorithm from one vertex to the other vertices, and the shortest path problem in the directed graph is solved. The main featur
  3. 所属分类:书籍源码

    • 发布日期:2018-01-06
    • 文件大小:3.52mb
    • 提供者:静守成雯
搜珍网 www.dssz.com