搜索资源列表
C语言实习
- C语言实现的校园导游图,有景点的介召,最短路径的查找,还有动画等-C language map of the campus tour guides, attractions mediated response, the search for the shortest path, animation, etc.
cibidiaodu
- 有多个访盘要求在等待时对这些要求的顺序的确定安排或调整,只在减少平均磁盘服务时间就成为磁盘调度,而磁盘调度有多种的调度算法,其中最短路径优先是其中基本一种,本课程设计是使用C++程序设计语言,在windows平台下对此调度算法进行模拟,通过此调度算法的模拟来进一步的加深对磁盘最短路径优先调度的了解,及对C++程序设计语言的使用。 关键词:磁盘调度 最短路径优先 操作系统 课程设计 -set to visit a number of requests waiting for the rig
shortNetwork
- 本程序为最短路径的C源程序,算法简单,执行效率高-the procedures for the shortest path to the C source, the algorithm is simple, high efficiency
shortestpath(file-based)
- 用Visual C++编写的一个基于文本文件的最短路径程序源码-prepared text of a document based on the shortest path procedures FOSS
Dijkstra_c
- C#中实现最短路,该图算法描述的是这样的场景:图由节点和带有方向的边构成,每条边都有相应的权值,路径规划(最短路径)算法就是要找出从节点A到节点B的累积权值最小的路径。-achieve the most short-circuit, the algorithm described in the plan that is the scene : map with nodes and from the direction of the edges, and each side has a corre
Floyd-Warshall-c-chengxi
- 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)算法结
Dijkstra_ShortestPath
- Dijkstra最短路径的C#实现,简单明了!
Shortest
- c++开发最短路径,可用于地理信息系统专业
FINDMIN
- 用Djkstra算法找到最短路径,并用Turbo C环境的图形函数简单画出
C
- 1) 设计下沙校园平面图,在校园景点选10个左右景点。以图中顶点表示校园内各景点,存放景点名称、代号、简介等信息;以边表示路径,存放路径长度等有关信息。 2) 为来访客人提供图中任意景点相关信息的查询。 3) 为来访客人提供任意景点的问路查询,即查询任意两个景点之间的一条最短路径。
theShortestPath
- 最短路径算法的C语言实现,采用了尾递归的方法,时间效率很高。
01
- 用C实现一个校园导游系统,能实现本校的景点查询和计算任意两景点间的最短路径。-Using C to achieve a campus tour guide system, to achieve the university s attractions arbitrary query and calculation of the two shortest path between attractions.
Graph
- 图的基类以及最短路径算法,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
shortpath
- 用c++实现求出最短路径的算法,并在结果中将其输出-Using c++ to achieve the shortest path algorithm to derive, and the result will be the output
Matrixvectoralgorithm
- 用Dijstra算法的矩阵向量算法,用C++编写实现路由最短路径。-Dijstra algorithm using matrix vector algorithm, using C++ to prepare to achieve the shortest path routing.
school-(c)
- C实现校园导游系统。包括景点描述,增加、修改、删除等功能,计算最短路径、最佳路径等-C campus tour guide system. Of Attraction Descr iption, increase, modify, delete, etc., to calculate the shortest path, the best path
dijkstra3.c
- dijkstra algorithm 用来描述最短路径,这里是并行化的实线.希望大家有时间试试,用的是openmp-dijkstra algorithm is used to describe the shortest path, here it is the parallelism of the solid line. I hope you have time to try, using a openmp
Astar
- A星寻路算法,输入矩阵,输出路径点,得到一条最短路径(A star algorithm source code)
Dijkstra迪捷斯特拉算法
- 迪杰斯特拉算法是从一个顶点到其余各顶点的最短路径算法,解决的是有向图中最短路径问题。迪杰斯特拉算法主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。(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
交通咨询系统
- 设计一个交通咨询系统,能让旅客咨询从任一个城市到另一个城市之间的最短路径(里程)。(Design a traffic consulting system that allows passengers to consult the shortest path (mileage) from one city to another.)