CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - SHORTEST-PATHS

搜索资源列表

  1. dijkstra

    0下载:
  2. 单源最短路径,MATLAB编程,用于数学建模。-Monophyletic shortest paths, MATLAB, used for mathematical modeling.
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:6211
    • 提供者:wewen
  1. Dijsktra

    0下载:
  2. implementation of Dijkstra s algorithm for finding shortest paths in graphs.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3824
    • 提供者:mostafa
  1. Shortest-Path-Based-on-Delay-PCNN

    0下载:
  2.  本文在脉冲耦合神经网络(PCNN2Pulse Coupled Neural Network) 的基础上,提出了时延脉冲耦合神经网络 (DPCNN2Delay PCNN) ,并将其成功地用于求解最短路径,同时给出了基于DPCNN 的最短路径求解算法. Caulfield 与 Kinser 提出了用PCNN 求解迷宫问题的方法,虽然他们的方法也可用于求解最短路径,但所需神经元的数量巨大,而本 文的方法所需的神经元的数量远小于他们的方法. 同时,本文的方法充分利用了DPCNN 脉冲快速并
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-30
    • 文件大小:102175
    • 提供者:wangxx
  1. dijkstra

    0下载:
  2. digstra algorithm for shortest paths
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:3103
    • 提供者:rahul
  1. The-shortest-path-problem

    0下载:
  2. 最短路径问题。两个点A与B之间有多条路,从A到B有多条方案。求A到B的最短路径-The shortest path problem.There are several paths from point A to B.Now we want to know which path is the shortest.Ihis program can help us desolve the Transportation problem
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:4386
    • 提供者:zhangyue
  1. ShortestPath

    0下载:
  2. 本文件是关于最短路径问题的课程设计,分析了图问题中关于两点最短路径的问题,采用Floyd算法,演示了国内两城市可达的最短距离。文件中包括源代码、测试覆盖率报告、原始数据、课程设计报告。对正在研究数据结构中图论方面的同学有一定帮助。-This document is on the shortest path problem, curriculum design, and analysis of graph problems on the two shortest paths using Floyd
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:299377
    • 提供者:yyp
  1. mutitarget-tracking

    0下载:
  2. 4篇文章:Multiple Object Tracking Using K-Shortest Paths Optimization;Moving target classification and tracking from real-time video;高斯混合概率假设密度滤波器在多目标跟踪中的应用;基于特征迹的密集多目标自适应视频跟踪-4papers:Multiple Object Tracking Using K-Shortest Paths Optimization;Moving ta
  3. 所属分类:Special Effects

    • 发布日期:2017-05-24
    • 文件大小:8183083
    • 提供者:张妙言
  1. yen

    0下载:
  2. 一个非常经典的用于求解K条最短路径的算法,适用于求解无环情况-a very classic algorithm for k shortest paths problem with loopless
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-10
    • 文件大小:2238185
    • 提供者:李建伏
  1. dijikstra

    0下载:
  2. For a given source vertex (node) in the graph, the algorithm finds the path with lowest cost (i.e. the shortest path) between that vertex and every other vertex. It can also be used for finding costs of shortest paths from a single vertex to a single
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:570
    • 提供者:yashika
  1. dijkstra-in-network

    0下载:
  2. Use Dijkstra s algorithm to calculate the shortest paths in routers and swithches in a network, Use standard C++.
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:2060280
    • 提供者:徐翔
  1. ShortestRoute

    0下载:
  2. .net环境下用c++写的最短路径,能读取数据文件,也可以在vc++6.0下运行,改一下头文件就行-The.net environment written in c++ the shortest paths, can read data files, also can run in vc++ 6.0, change a head file will do
  3. 所属分类:.net

    • 发布日期:2017-05-10
    • 文件大小:2488857
    • 提供者:
  1. ns2

    0下载:
  2. Many interesting route planning problems can be solved by computing shortest paths in a suitably modeled, weighted graph representing a transportation network. Such networks are naturally road networks or timetable networks of public transportati
  3. 所属分类:SCM

    • 发布日期:2017-03-27
    • 文件大小:29104
    • 提供者:manolin
  1. Installation-Setup

    0下载:
  2. Many interesting route planning problems can be solved by computing shortest paths in a suitably modeled, weighted graph representing a transportation network. Such networks are naturally road networks or timetable networks of public transportati
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-04
    • 文件大小:10868
    • 提供者:manolin
  1. LOT_Source

    0下载:
  2. 目标跟踪第t帧图像,目标特征,噪音参数,粒子窗口 1. 在第一帧选定跟踪区域,将图像由rgb转成hsv,计算目标的特征模型; 2. 初始化粒子,用超像素计算粒子的特征; 3. 通过emd计算粒子所在位置区域特征计算与目标特征的相似度; 4. 根据emd计算粒子的权重,归一化权重,新的目标位置是所有粒子的位置和权重乘积的和; 5. 建立新目标的特征模型,计算emd。 6. 更新噪音参数; 输出:目标位置,更新参数,新的粒子窗口 -Multiple Object Tr
  3. 所属分类:OpenCV

    • 发布日期:2017-05-13
    • 文件大小:3514951
    • 提供者:叶一波
  1. FreeTree

    0下载:
  2. 无环连通图G=(V, E)亦称为自由树T,其直径是树中所有顶点之间最短路径的最大值,设计一个算法求T的直径-Acyclic connected graph G = (V, E) is also known as free tree T, whose diameter is the tree of shortest paths between all vertices maximum design an algorithm for the diameter of T
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:3701798
    • 提供者:Anita
  1. YenTopKShortestPathsAlg

    0下载:
  2. 求解网络中前k条最短路径,并且考虑重复遍历的情况-YenTopKShortestPathsAlg Solving the network before the k shortest paths
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2051
    • 提供者:Peng LI
  1. shortestpath

    0下载:
  2. 输入图,输出最短路径。输入的图需要是 起点 距离 终点 格式-The program first read the input file to create node link list with name of nodes and count the number of nodes. Then it reread the input file to form the adjacency matrix of the graph. It has functions of creating, add
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4899
    • 提供者:JU Sida
  1. Centrality-measures

    0下载:
  2. 文件包括:1.计算平均最短路径;2.计算每个顶点相邻节点的平均度;3.计算每个节点的邻近中心度;4.计算节点的介数(slow);5.计算节点的介数(faster);6.计算每条边的介数值;7.快速迪杰斯特拉算法;8.经典迪杰斯特拉算法。-1.the average shortest path in the graph 2.the average degree of neighboring nodes for every vertex 3.computes the closeness centra
  3. 所属分类:matlab

    • 发布日期:2017-04-05
    • 文件大小:12052
    • 提供者:dandy
  1. k_shortest

    0下载:
  2. 本程序的功能是寻找前k条最短路径,在DOS窗口中先输出了网络节点的拓扑结构,然后输入源节点与目的节点,输出最短路径以及前k条最短路径。-The functionality of the program is to find pre-k shortest paths. First output in the DOS window of the topology of the network node, and then enter the source node and destination n
  3. 所属分类:Game Program

    • 发布日期:2017-04-13
    • 文件大小:2474
    • 提供者:gefopti
  1. osrm-backend-master

    0下载:
  2. Open Source Routing Machine (OSRM)计算图像中最短的路径。coherentlyIt被设计很好运行与地图数据Openstreetmap项目。-Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data the Openstreetmap Project.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-17
    • 文件大小:461056
    • 提供者:Chen Zhang
« 1 2 34 5 6 »
搜珍网 www.dssz.com