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

搜索资源列表

  1. C语言实习

    0下载:
  2. C语言实现的校园导游图,有景点的介召,最短路径的查找,还有动画等-C language map of the campus tour guides, attractions mediated response, the search for the shortest path, animation, etc.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:191881
    • 提供者:林巳钧
  1. cibidiaodu

    0下载:
  2. 有多个访盘要求在等待时对这些要求的顺序的确定安排或调整,只在减少平均磁盘服务时间就成为磁盘调度,而磁盘调度有多种的调度算法,其中最短路径优先是其中基本一种,本课程设计是使用C++程序设计语言,在windows平台下对此调度算法进行模拟,通过此调度算法的模拟来进一步的加深对磁盘最短路径优先调度的了解,及对C++程序设计语言的使用。 关键词:磁盘调度 最短路径优先 操作系统 课程设计 -set to visit a number of requests waiting for the rig
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:43711
    • 提供者:戴天天
  1. shortNetwork

    0下载:
  2. 本程序为最短路径的C源程序,算法简单,执行效率高-the procedures for the shortest path to the C source, the algorithm is simple, high efficiency
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1286
    • 提供者:许明
  1. shortestpath(file-based)

    0下载:
  2. 用Visual C++编写的一个基于文本文件的最短路径程序源码-prepared text of a document based on the shortest path procedures FOSS
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:313503
    • 提供者:王亚文
  1. Dijkstra_c

    0下载:
  2. 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
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2947
    • 提供者:1
  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
    • 文件大小:3567
    • 提供者:江晨
  1. Dijkstra_ShortestPath

    0下载:
  2. Dijkstra最短路径的C#实现,简单明了!
  3. 所属分类:其它

    • 发布日期:2014-01-18
    • 文件大小:16878
    • 提供者:Long
  1. Shortest

    0下载:
  2. c++开发最短路径,可用于地理信息系统专业
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:11844
    • 提供者:刘波
  1. FINDMIN

    0下载:
  2. 用Djkstra算法找到最短路径,并用Turbo C环境的图形函数简单画出
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2103
    • 提供者:wangzerg999
  1. C

    0下载:
  2. 1) 设计下沙校园平面图,在校园景点选10个左右景点。以图中顶点表示校园内各景点,存放景点名称、代号、简介等信息;以边表示路径,存放路径长度等有关信息。 2) 为来访客人提供图中任意景点相关信息的查询。 3) 为来访客人提供任意景点的问路查询,即查询任意两个景点之间的一条最短路径。
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:41769
    • 提供者:Michel
  1. theShortestPath

    0下载:
  2. 最短路径算法的C语言实现,采用了尾递归的方法,时间效率很高。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2395
    • 提供者:汪晗
  1. 01

    0下载:
  2. 用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.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:1947
    • 提供者:
  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
    • 文件大小:42789
    • 提供者:张淼
  1. shortpath

    0下载:
  2. 用c++实现求出最短路径的算法,并在结果中将其输出-Using c++ to achieve the shortest path algorithm to derive, and the result will be the output
  3. 所属分类:MPI

    • 发布日期:2017-03-28
    • 文件大小:7440
    • 提供者:强哥
  1. Matrixvectoralgorithm

    0下载:
  2. 用Dijstra算法的矩阵向量算法,用C++编写实现路由最短路径。-Dijstra algorithm using matrix vector algorithm, using C++ to prepare to achieve the shortest path routing.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-10
    • 文件大小:1419
    • 提供者:马宁
  1. school-(c)

    0下载:
  2. C实现校园导游系统。包括景点描述,增加、修改、删除等功能,计算最短路径、最佳路径等-C campus tour guide system. Of Attraction Descr iption, increase, modify, delete, etc., to calculate the shortest path, the best path
  3. 所属分类:OS Develop

    • 发布日期:2017-05-02
    • 文件大小:538312
    • 提供者:may
  1. dijkstra3.c

    0下载:
  2. 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
  3. 所属分类:MPI

    • 发布日期:2017-04-14
    • 文件大小:4068
    • 提供者:duanhao
  1. Astar

    0下载:
  2. A星寻路算法,输入矩阵,输出路径点,得到一条最短路径(A star algorithm source code)
  3. 所属分类:书籍源码

    • 发布日期:2018-01-04
    • 文件大小:2444288
    • 提供者:meizishu
  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-05
    • 文件大小:3689472
    • 提供者:静守成雯
  1. 交通咨询系统

    1下载:
  2. 设计一个交通咨询系统,能让旅客咨询从任一个城市到另一个城市之间的最短路径(里程)。(Design a traffic consulting system that allows passengers to consult the shortest path (mileage) from one city to another.)
  3. 所属分类:书籍源码

    • 发布日期:2020-02-06
    • 文件大小:823296
    • 提供者:祝余
« 12 »
搜珍网 www.dssz.com