搜索资源列表
-
1下载:
C语言编程实现D算法。本实验利用Matlab实现。实现以下功能:
1输入必要参数,包括:节点个数、节点间路径长度、给定节点;
2输出给定节点到其它各节点的最短路径、径长;
3节点间路径长度用矩阵形式表示:
-D C language programming algorithm. In this study, by Matlab. Achieve the following functions: 1 Enter the required parameters, includ
-
-
0下载:
链路状态路由算法的实现,典型的最短路径路由算法,用于计算一个节点到其他所有节点的最短路径。-Link state routing algorithm, a typical shortest path routing algorithm for calculating a node to all other nodes of the shortest path.
-
-
0下载:
一个非常好用的A star搜索最佳路径算法 -a best A* find the shortest path algorithm
-
-
0下载:
通过Dijkstra算法求出路由表中的最短路径和最小跳数。-Dijkstra' s algorithm to find the shortest path and the minimum number of hops in the routing table.
-
-
0下载:
this shortest path finding algorithm
-
-
0下载:
利用VC++求最短路径算法,适用于网络路由算法,是一种简介有效的算法-Use VC++ Seeking the shortest path algorithm applied to network routing algorithm, is a brief and effective algorithm
-
-
0下载:
比较基于最短路径的dijstra算法和dial算法的性能,主要从运算速度方面上-Performance dijstra comparison algorithm and dial-based shortest path algorithm, mainly from the operation speed
-
-
0下载:
一个基于分布式系统的最短路径算法,需要手动输入每个节点到其他节点的距离-A shortest path algorithm based on distributed systems, the need to manually enter each node to other nodes in the distance
-
-
0下载:
Use DIjkstra algorithm to calculate the shortest path routing, when the network topology changes automatically update the routing table
-
-
0下载:
通信网基础理论课程的作业,用D算法找最短路径。-Basic theory of communications network courses homework, find the shortest path using D algorithm.
-
-
0下载:
opnet中一种最短路径算法设计网络设计源代码,分享一下-opnet of one shortest path algorithm design network design source code, to share
-
-
0下载:
读取点线连接,使用类迪杰斯特拉算法求解最短路径输出服务区范围,并通过nodejs搭建服务器,在网页上用canvas绘制显示。原始数据中,点数据为(ID,坐标xy)线数据为(前后连接点,权值)-Read point line connection using class Dijkstra shortest path algorithm output service area, and set up the server through nodejs, drawn with canvas on th
-
-
0下载:
拥有简单界面设计,基于最短路径的路由选择算法。-It has a simple interface design, based on the shortest path routing algorithm.
-
-
0下载:
Dijkstra(迪杰斯特拉)算法是典型的单源最短路径算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。-Dijkstra (Dijkstra) algorithm is a typical single-source shortest path algorithm for calculating a node to all other nodes in the shortest path. The main characteristic
-
-
0下载:
最短路径算法的C语言实现,迪杰斯特拉算法的C语言实现-
Shortest path algorithm C language, Dijkstra algorithm C language
-
-
0下载:
JAVA实现旅行商问题,有简单的可视化界面
有N个城市,要求从其中某个问题出发,唯一遍历所有城市,再回到出发的城市,求最短的路线。使用模拟退火算法可以比较快的求出TSP的一条近似最优路径。-JAVA traveling salesman problem, a simple visual interface
There are N cities, which to ask a question, the only way to traverse all cities, and then
-
-
0下载:
用TS算法解决推销商最短路径问题,数据是中国的各个省会和直辖市(Salesman to solve the shortest path problem with TS algorithm, the data is Chinese all provincial capitals and municipalities directly under the central government)
-
-
1下载:
最短路径问题是图论中的一个经典问题,其中的Dijkstra算法一直被认为是图论中的好算法,但有的时候需要适当的调整Dijkstra 算法才能完成多种不同的优化路径的查询。
对于某城市的公交线路,乘坐公交的顾客希望在这样的线路上实现各种优化路径的查询。设该城市的公交线路的输入格式为:
线路编号:起始站名(该站坐标);经过的站点1 名(该站坐标);经过的站点2名(该站坐标);……;经过的站点n 名(该站坐标);终点站名(该站坐标)。该线路的乘坐价钱。该线路平均经过多少时间来一辆。车速。
例如:
-