搜索资源列表
minRoute
- matlab求最短路径的Dijkstra算法,使用说明很清楚,简单易用-matlab seek the shortest path Dijkstra algorithm, instructions are clear, easy to use
Dijkstra
- 最短路径的Dijkstra算法程序。Dijkstra算法是典型最短路算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。Dijkstra算法能得出最短路径的最优解,但由于它遍历计算的节点很多,所以效率低。 Dijkstra算法是很有代表性的最短路算法,在很多专业课程中都作为基本内容有详细的介绍,如数据结构,图论,运筹学等等。 -The Dijkstra shortest path algorithm for the proce
Dijkstra-Shortest-Path
- 一种快速求得最短路径的经典算法,可以在运筹规划或在统筹安排中使用-Express obtained a classic shortest path algorithm, can be planned or in operation in co-ordinating arrangements for the use of
Public-transport-system-the-best-path-algorithm.ra
- 公共交通最佳路径算法在分析城市道路网络最短路径算法 SP算法 和公交网络的特点的基础上,提出公共交通系 ( ) ( ) 统最佳路径算法.首先引入直达矩阵 T矩阵 和最小换乘矩阵 Q 矩阵 ,讨论公交网络节点间换乘 问题,得出最少换乘算法.利用 Q 矩阵确定节点间最少换乘次数,评价公交网络方便可达性.其次 ( ) 结合最少换乘算法,对最短路径算法 Dijkstra 算法 进行改进.在标号过程中,利用 Q 矩阵对待检验 T标号点进行筛选,减少 T 标号计算量,得到一条综合考虑
dijkstra
- dijkstar经典算法,用于寻求最短路径规划等-dijkstar classical algorithm for seeking the shortest path planning
Dijkstra
- Dijkstra算法(最短路径法)的matlab应用程序-Dijkstra algorithm (shortest path method) of matlab applications
dijkstra
- Diskstra最短路径算法的c++源程序,以及编译好的matlab动态链接库,学习留形学习算法及程序必备。-Diskstra shortest path algorithm c++ source code, and compiled matlab dynamic link library, learning algorithms and procedures remain an essential form of learning.
dikstra
- dijkstra算法求最短路径及路径标号的matlab实现-dijkstra,shortest path
matlib
- Dijkstra算法求解非负有向图的最短路径,算法的MATLAB实现。分享推荐。-Dijkstra algorithm to the graph of non-responsibility shortest path algorithm of MATLAB implementation. Sharing recommended.
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 point for the center la
dijkstra
- 图论中关于最短路径的Dijkstra算法和通过两指定顶点的最短路径算法。-The shortest path on graph theory and the Dijkstra algorithm specified by two vertices of the shortest path algorithm.
minRoute
- 关于交通分配中的最短路径问题,采用dijkstra最短路径算法-Dijkstra shortest path algorithm on the shortest path problem in the traffic assignment
dijkstra-general
- Dijkstra通用算法,最近一段时间一直在搞图论的相关算法,发现Dijkstra是一个很好的单元最短路径算法,此程序很短,非常适合学习-Generic Dijkstra algorithm, the most recent period has been engaged in graph theory algorithms, Dijkstra is a good unit the shortest path algorithm, this procedure is very short, ve
Dijkf
- dijkstra最短路径算法,获取最短的路径方法,是路径选择的经典算法。-dijstra shortest path algorithm
Dijkstra
- 图论中最短路径算法Dijkstra算法实现,很有用的-Shortest path algorithm Dijkstra algorithm in graph theory, useful
最短路径Dijkstra
- 计算最短路径程序算法,可以利用matlab来实现,方便使用(Computing the shortest path program algorithm, you can use matlab to achieve, easy to use)
dijkstra
- 迪杰斯特拉算法是由荷兰计算机科学家狄克斯特拉于1959 年提出的,因此又叫狄克斯特拉算法。是从一个顶点到其余各顶点的最短路径算法,解决的是有向图中最短路径问题。迪杰斯特拉算法主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。(Dijkstra algorithm was proposed by Dijkstra, a computer scientist in Holland in 1959, so it is also called Dijkstra algorithm. Is the
最短路径(Dijkstra算法)
- 已知两点,求该两地那间的最短路径,注意与TSP有区别。(When two points are known, the shortest path between the two places is considered, noting that there is a difference between TSP and the other.)
dijkstra
- 求短路算法m程序,输入节点数量,两点间的实际距离,运行即可得到最短的路线,属于matlab程序。(Short circuit algorithm m program, matlab program)
matlab计算最短路径
- 在Matlab软件中,用Dijkstra算法和Floyd算法计算出最短路径。