CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 控制台(字符窗口)编程 搜索资源 - shortest path

搜索资源列表

  1. 城市信息及最短路径查询系统

    4下载:
  2. 用C语言写的《城市信息及最短路径查询系统》,图形界面,功能比较齐全。-C language book, "Cities and the shortest path query system", a graphical interface, functions more complete.
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:176043
    • 提供者:
  1. spfa

    0下载:
  2. 求单源点最短路径效率最高的算法,包括2个样例程序和测试数据。-For single-source shortest path algorithm for the highest efficiency, including two sample procedures and test data.
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:61610
    • 提供者:ly
  1. ass2_088766_wangxiaofeng_325

    0下载:
  2. 最短路径算法 几个城市之间的距离 输出的是一个城市到另一个城市的距离-Shortest path algorithm in several cities the distance between the output of a city to another city in the distance
  3. 所属分类:Console

    • 发布日期:2017-04-15
    • 文件大小:7425
    • 提供者:王晓峰
  1. mazebestpath

    0下载:
  2. 迷宫最短路径问题,采用递归算法实现,C语言学习者的经典题目-Maze shortest path problem, the use of recursive algorithm
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:1050
    • 提供者:骆俊武
  1. vc6.0shorttestpathsearch

    0下载:
  2. 货郎担最短路径生成 最短路径生成的算法不计其数 其中很多用回溯法 回溯法不错 不过很多新手写哦时候掌握不好效率 上传一个效率高的版本-Traveling Salesman generate the shortest path shortest path algorithm to generate many of which used numerous retrospective law retrospective laws, however good a lot of time to maste
  3. 所属分类:Console

    • 发布日期:2017-04-04
    • 文件大小:7954
    • 提供者:杨红尘
  1. God

    0下载:
  2. 用Windows控制台程序实现A*算法在交通网络中寻找最短路径的应用,并附有实际的测试数据,程序已经调过没有问题。-Windows Console Application with the realization of A* algorithm to find the shortest path transport network applications, along with the actual test data, the program has emphasized there is
  3. 所属分类:Console

    • 发布日期:2017-04-09
    • 文件大小:1170903
    • 提供者:丁小寻
  1. zuiduanlujing

    0下载:
  2. 说明:这是个在公园里各景点之间最短路径的控制台程序。非常好,使用dijkstra,floyd算法-Note: This is the various attractions in the park where the shortest path between the console program. Very good, using dijkstra, floyd algorithm
  3. 所属分类:Console

    • 发布日期:2017-03-28
    • 文件大小:214509
    • 提供者:将军
  1. dijiesiktra

    0下载:
  2. 按路径长度递增次序产生最短路径算法:   把V分成两组:   (1)S:已求出最短路径的顶点的集合   (2)V-S=T:尚未确定最短路径的顶点集合   将T中顶点按最短路径递增的次序加入到S中,   保证:(1)从源点V0到S中各顶点的最短路径长度都不大于   从V0到T中任何顶点的最短路径长度   (2)每个顶点对应一个距离值   S中顶点:从V0到此顶点的最短路径长度   T中顶点:从V0到此顶点的只包括S中顶点作中间   顶点的最短路径长度 -
  3. 所属分类:Console

    • 发布日期:2017-04-06
    • 文件大小:853
    • 提供者:马值
  1. Dijkstra

    0下载:
  2. 1 将顶点集V分成 S(开始只包含源点, S包含的点都是已经计算出最短路径的点) 和 V-S 集合(V-S 包含那些未确定最短路径的点) 2. 从V-S中选取这样一个顶点w: 满足经过S集合中任意顶点 v到w 的路径最短, 即 满足( 源到v的路径 + v到w的路径) 最小的那个w. 其中v 属于S, w属于S-V。将w 加入S, 并从V-S中移除w. 3. 如此反复,直到V-S变空集为止-1 to the vertex set V into S (the beginni
  3. 所属分类:Console

    • 发布日期:2017-04-02
    • 文件大小:803644
    • 提供者:bob
  1. shool

    0下载:
  2. 控制台程序,用c++写的,一个兰州交通大学,校园导游程序,能够寻找最短路径,能够以字符界面与用户进行交互-Console program, written using c++, a Lanzhou Jiaotong University, the campus tour program, to find the shortest path, able to interact with the user interface characters
  3. 所属分类:Console

    • 发布日期:2017-04-09
    • 文件大小:1082605
    • 提供者:aiqier—liu
  1. dijkstra

    0下载:
  2. 利用dijistra算法获取最短路径的控制台小程序,压缩包中含有设计报告。-Use dijistra algorithm to obtain the shortest path of the console applet package contains the design report.
  3. 所属分类:Console

    • 发布日期:2017-04-06
    • 文件大小:566294
    • 提供者:
  1. Floyd

    0下载:
  2. 图的一个最短路径,用的Floyd实现,好型挺好用的-A shortest path in the graph, with the Floyd achieved, the good type good use aaaaaaaaa
  3. 所属分类:Console

    • 发布日期:2017-04-01
    • 文件大小:51487
    • 提供者:madewei
  1. Floyd0

    0下载:
  2. 用Floyd实现图中最短路径的查找,可以重复使用,循环嵌套,实用的小程序-Floyd to achieve the shortest path to the search, can be reused, nested loop, and practical small procedures
  3. 所属分类:Console

    • 发布日期:2017-04-16
    • 文件大小:51498
    • 提供者:madewei
  1. CPP-LYG-Journey

    0下载:
  2. 一个用C++写的课程设计,关于旅游的一个系统,用到了最短路径算法-A with C++ write curriculum design of a system on tourism, use the shortest path algorithm
  3. 所属分类:Console

    • 发布日期:2017-12-08
    • 文件大小:21029
    • 提供者:wangliang
  1. AStar

    0下载:
  2. A星算法的C语言实现。生成随机地图,用A星算法搜索最短路径-A star algorithm in C language. Generates a random map A star algorithm to search for the shortest path
  3. 所属分类:Console

    • 发布日期:2017-11-06
    • 文件大小:2168
    • 提供者:amlo
  1. FloydW

    0下载:
  2. Floyd算法又称为弗洛伊德算法,插点法,是一种用于寻找给定的加权图中顶点间最短路径的算法。该算法名称以创始人之一、1978年图灵奖获得者、斯坦福大学计算机科学系教授罗伯特·弗洛伊德命名。-Floyd algorithm, also known as Freud algorithm, the insertion point method is an algorithm used to find the shortest path between vertices given weighted g
  3. 所属分类:Console

    • 发布日期:2017-12-08
    • 文件大小:533
    • 提供者:liming
  1. SPFA

    0下载:
  2. 一种高效的最短路径算法,适用于稀疏矩阵下的电影最短路径查找-An efficient shortest path algorithm suitable for sparse matrix movie shortest path lookup
  3. 所属分类:Console

    • 发布日期:2017-11-19
    • 文件大小:240692
    • 提供者:lihang
  1. Floyd

    0下载:
  2. 利用Floyd算法求各个点到各个点的最短路径,在控制台窗口中输出路径及距离,算法较经典,VC++实现-Floyd algorithm for the various points to various points of the shortest path, output path and distance algorithm in the console window classic VC++ is to achieve
  3. 所属分类:Console

    • 发布日期:2017-11-20
    • 文件大小:413029
    • 提供者:罗晋
  1. BT2

    0下载:
  2. A Star Algorithm. Input is a graph save as matrix. Output is the shortest path using A star algorithm
  3. 所属分类:Console

    • 发布日期:2017-11-17
    • 文件大小:175104
    • 提供者:mr_cao
  1. shortest

    0下载:
  2. 利用Dijkstra算法计算任意两点间的最短路径 -the progress of calculate the shortest path
  3. 所属分类:Console

    • 发布日期:2017-04-30
    • 文件大小:164634
    • 提供者:林可儿
« 12 »
搜珍网 www.dssz.com