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

搜索资源列表

  1. tom_cow

    0下载:
  2. we use breadth-first algorithm to find a augmenting path The max flow is all the power flow out the source node or sink into the destination node.
  3. 所属分类:Windows编程

    • 发布日期:2014-01-17
    • 文件大小:1898
    • 提供者:shijie
  1. max_flow

    0下载:
  2. 介绍最大流算法的ppt,The Ford-Fulkerson Augmenting Path Algorithm,The Capacity Scaling Algorithm,The Goldberg-Tarjan Preflow Push Algorithm,-Introduction maximum flow algorithm ppt, The Ford-Fulkerson Augmenting Path Algorithm, The Capacity Scaling Algorithm,
  3. 所属分类:Other systems

    • 发布日期:2017-05-11
    • 文件大小:2870102
    • 提供者:ltryee
  1. Maximum_flow

    0下载:
  2. 用C++实现的3种最大流算法。CS(Capacity-Scaling Algorithm)、SAP(Shortest Augmenting Path Algorithm)、ISAP(Improved Shortest Augmenting Path Algorithm)。-C++ implementation with three kinds of maximum flow algorithms. CS (Capacity-Scaling Algorithm), SAP (Shortest Au
  3. 所属分类:CSharp

    • 发布日期:2017-04-09
    • 文件大小:1760821
    • 提供者:叶凯
  1. shortestaugmentingpath

    0下载:
  2. 最大流问题的最短增广路径算法 是算法中的重要部分 -Maximum flow problem of the shortest augmenting path algorithm is an important part of the algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:22464
    • 提供者:luomin
  1. maxflow

    0下载:
  2. 实现的是最大流的两种增广路算法,用到队列和BFS寻增广路-To achieve the maximum flow of the two augmenting path algorithm, used in the queue and the BFS search augmenting path
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1042
    • 提供者:张佳静
  1. xyl_suanfa

    1下载:
  2. 匈牙利算法是基于Hall定理中充分性证明的思想,它是部图匹配最常见的算法,该算法的核心就是寻找增广路径,它是一种用增广路径求二分图最大匹配的算法。-Hungarian algorithm is based on the thought of the Hall theorem sufficient proof, it is the Ministry of graph matching most common algorithm, the core of the algorithm is to fi
  3. 所属分类:assembly language

    • 发布日期:2017-11-17
    • 文件大小:985
    • 提供者:雨儿涟
  1. the-maximum-flow-problem-

    0下载:
  2. 用增广路法计算最大流问题,给出了C++代码-Augmenting path method to calculate the maximum flow problem given C++ code
  3. 所属分类:Algorithm

    • 发布日期:2017-11-07
    • 文件大小:2100
    • 提供者:郁文竹
  1. Ford-Fulkerson

    0下载:
  2. 算法导论对最大流算法有很详细的介绍,今天实现了最大流Ford-Fulkerson的算法,包括BFS和DFS来搜索增广路径。 -Introduction to Algorithms maximum flow algorithm has a very detailed briefing today to achieve the maximum flow algorithm of Ford-Fulkerson, including BFS and DFS search augmenting pa
  3. 所属分类:JavaScript

    • 发布日期:2017-11-14
    • 文件大小:1103
    • 提供者:jady
  1. 224Edmonds_Karp

    0下载:
  2. T017_最大流增广路算法224Edmonds_Karp-T017_ maximum flow augmenting path algorithm 224Edmonds_Karp
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1113
    • 提供者:zgmyao
  1. Edmonds.cpp.tar

    0下载:
  2. Edmonds算法,寻找网络最大流 算法流程: 在残余网络中, 通过广搜找到一条增广路 找出增广路上的最小权值的边 更新残余网络 直到找不到增广路为止 // 统计当前网络中汇点的流-Edmonds algorithm to find the maximum network flow algorithm process: in the residual network, through extensive search to find an augmenting path
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1254
    • 提供者:qhs
  1. 1087(A-Plug-for-UNIX)(SAPPGAPPBFS)

    0下载:
  2. poj1087,SAP+GAP+BFS,最快的基于增广路径的最大流算法-poj1087, SAP+GAP+BFS, the fastest maximum flow algorithm based on augmenting path
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1466
    • 提供者:蒲睿
  1. flower-tree

    0下载:
  2. 所谓的带花树算法就是,把整个圈缩成一个点,Edmonds称这个超级点为“花”,就是说,原圈里的所有点都作为外点,然后继续搜索。再之后的过程中,已经被缩的点还可能被嵌套地收缩。 当我们找到一条增广路之后,还要把路上的“花”展开。 总之,带花树的算法思想就是缩点-继续找增广路-找到之后把花展开。 这个算法的思想并不难理解、难的是实现。 -The algorithm is called with trees and flowers, the whole circle shrunk t
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1841
    • 提供者:蓝星超
  1. network-graph-CPP-cometrue

    0下载:
  2. 最大流增广路算法的实现,本代码使用C++实现了最大流增广路算法-max-flow augmenting path algorithm cometure using C++.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:1568
    • 提供者:diaozaoxiang
  1. main

    0下载:
  2. SAP算法:求最大流有一种经典的算法,就是每次找增广路时用BFS找,保证找到的增广路是弧数最少的,也就是所谓的Edmonds-Karp算法。- SAP algorithm for the maximum flow is a classical algorithm, is each for augmenting path with BFS can guarantee the augmented way to find the minimum number of arcs, which i
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1398
    • 提供者:亮建
搜珍网 www.dssz.com