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

搜索资源列表

  1. TRA3

    0下载:
  2. 旅行商算法算出全国31外城市的最短单源路径。-traveling salesman algorithm calculates the country's 31 cities outside the single source shortest paths.
  3. 所属分类:编辑框

    • 发布日期:2008-10-13
    • 文件大小:1889
    • 提供者:qw
  1. kbest

    1下载:
  2. k Shortest Paths David Eppstein s method ICTCLAS研究学习组 http://groups.google.com/group/ictclas?msg=subscribe-k Shortest Paths David Eppstein's method IC TCLAS Studies Group http : / / groups.google.com / group / sub ictclas msg = scribe
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:19942
    • 提供者:Jian Ye
  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

    0下载:
  2. 这个例程,会在多条相同最短路径中选出边数最少的路径.只是改变path域即可在遍历的时候访问到边数少的路径.核心的思想,就是建立一个数组,存放从出发点到当前顶点的最短路径边数.通过每次查看最短路径相同的情况, 即dv + cvw = dw.时,如果 Count[v] + 1 < Count[w]时,就执行 Count[w] = Count[v] + 1, 同时 w -> path = c.-This routine will be the same number of shortest
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:885
    • 提供者:php0
  1. GraphAlgorithms

    0下载:
  2. There are many algorithms that can be applied to graphs. Many of these are actually used in the real world, such as Dijkstra’s algorithm to find shortest paths. We will discuss a few here.-有很多算法,可用于图形。其中许多是实际使用在现实世界中, 如迪杰斯特拉算法寻找最短路径。将在这里讨论几个算法。
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:669672
    • 提供者:anton shieh
  1. dijkstra5

    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. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:51992
    • 提供者:vvvvv
  1. KSP-PDF

    0下载:
  2. 前k条最短路径(KSP)算法在国内鲜有研究,本压缩包中文献整合了自1971年此问题被提出后几十年来的论文共25篇。 其中以Martin先生的删除(Delelte)算法与Yen先生的背离(Devation)算法为主。 其中所有文献均来自网络。含有两篇中文文章以及23篇英文文章。 算法的复杂度基本控制于O(logn)内-Pre-k shortest paths (KSP) algorithm in the domestic few studies in the literature in
  3. 所属分类:Data structs

    • 发布日期:2017-05-26
    • 文件大小:8789758
    • 提供者:Lee
  1. ShortestPath

    0下载:
  2. Shortest Paths Algorithms
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:1737
    • 提供者:OluS
  1. Classes

    0下载:
  2. 算法实验 其中包括 N后问题 最短路径 哈弗曼编码 归并排序-Algorithm after the experiment including the N shortest paths problem Havermann code mergesort
  3. 所属分类:WEB(ASP,PHP,...)

    • 发布日期:2017-05-17
    • 文件大小:4440063
    • 提供者:边缘细线
  1. Algorithms.In.C.3rd.Ed.Part5.Graph.Algorithms

    1下载:
  2. 经典算法书(中文版)。这一套算法系列书介绍了当今最重要的算法,共分3卷,这是第2卷(第五部分),集中讲解图算法。本书共有6章(第17章~第22章)。第17章详细讨论图性质和类型,第18章~第22章分别讲解图搜索、有向图和DAG、最小生成树、最短路径以及网络流。书中提供了用C语言描述的完整算法源程序,并且配有丰富的插图和练习。-Algorithms in C, Third Edition, Part 5: Graph Algorithms is the second book in Sedgewi
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-06-01
    • 文件大小:13904888
    • 提供者:wang
  1. SharpICTCLAS

    0下载:
  2. ICTCLAS分词的总体流程包括:1)初步分词;2)词性标注;3)人名、地名识别;4)重新分词;5)重新词性标注这五步。就第一步分词而言,又细分成:1)原子切分;2)找出原子之间所有可能的组词方案;3)N-最短路径中文词语粗分三步。 在所有内容中,词典库的读取是最基本的功能。ICTCLAS中词典存放在Data目录中,常用的词典包括coreDict.dct(词典库)、BigramDict.dct(词与词间的关联库)、nr.dct(人名库)、ns.dct(地名库)、tr.dct(翻译人名库
  3. 所属分类:Search Engine

    • 发布日期:2017-04-09
    • 文件大小:1964863
    • 提供者:ounata
  1. Dijkstra

    0下载:
  2. 求解Dijkstra 前k条最短路径,非常实用,编译已通过-Dijkstra solved before the k shortest paths
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:913
    • 提供者:花无缺
  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 destinatio
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:2429
    • 提供者:shenjian
  1. K_ShortestPath

    0下载:
  2. 如果你对前K条最短路径一类的问题感兴趣,那么这是不错的参考资料,希望对你有所帮助.-If you pre-K shortest paths problem for a class of interest, then this is a good reference, hope this helps.
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2978767
    • 提供者:花无缺
  1. matlab

    0下载:
  2. 迪杰斯特拉算法求最短路径,经典的求解最短路径算法等-Dijstrala algorithm solve the shortest—paths problems
  3. 所属分类:matlab

    • 发布日期:2017-03-25
    • 文件大小:153485
    • 提供者:李宜鹏
  1. Floyd

    0下载:
  2. Floyd算法适用于APSP(All Pairs Shortest Paths),-APSP(All Pairs Shortest Paths),
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:3766
    • 提供者:张三峰
  1. main

    0下载:
  2. 完成了简单的A*(A star)算法 可以用于求解第K短路径-Completion of a simple A* (A star) algorithm can be used to solve the first K shortest paths
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1118
    • 提供者:钟洪盛
  1. Graphalgorithm

    0下载:
  2. 图论算法实现,含树,欧拉圈,霍夫曼编码,图的连通性,着色树,最短路径等,且采用加载皮肤界面,界面美观-Graph algorithms, including trees, Euler circles, Huffman coding, graph connectivity, coloring trees, shortest paths, and the interface with loads of skin, beautiful interface
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-10
    • 文件大小:1145340
    • 提供者:zc
  1. ford.c

    0下载:
  2. Ford algorithms trees The Bellman–Ford algorithm computes single-source shortest paths in a weighted digraph. For graphs with only non-negative edge weights, the faster Dijkstra s algorithm also solves the problem. Thus, Bellman–Ford is used primar
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-04-07
    • 文件大小:615
    • 提供者:darulor
  1. Incremental-shortest-path-algorithm

    0下载:
  2. 最短增量路径算法,先找到从第源点到汇聚点的所有路径(生成树),然后再依次找出每条路径的最大流量并同时修改矩阵的流量减该路径的最大流量,最后相加每条路径的流量得到总的最大流量-Incremental shortest path algorithm, first find from the source to a focal point of all paths (MST), and then turn to find the maximum flow of each path and also c
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-27
    • 文件大小:1423
    • 提供者:kbz
« 1 23 4 5 6 7 »
搜珍网 www.dssz.com