简体   繁体   English

如何找到2个给定顶点之间的边缘连通性

[英]How to find edge connectivity between 2 given vertex

Edge connectivity is minimum number of edge to be removed to divide graph in 2 or more components. 边缘连通性是指将图形划分为2个或更多组件时要删除的最小边缘数。 As of now I have found an algorithm for edge connectivity irrespective of vertex: http://www.sanfoundry.com/java-program-find-edge-connectivity-graph/ 到目前为止,我发现了一种与顶点无关的边缘连接算法: http : //www.sanfoundry.com/java-program-find-edge-connectivity-graph/

What is the best method I can use to proceed with, to find the edge connectivity between 2 vertices? 查找两个顶点之间的边连接性的最佳方法是什么?

Edge Connectivity between 2 vertex(v1, v2) - Means 2个顶点(v1,v2)之间的边缘连接-均值

If cutting any edge/edges in Graph G, generates two components G1 & G2. 如果在图形G中切割任何一条边,则生成两个分量G1和G2。

Here ( v1 ∈ G1 and v2 ∈ G2 ) OR ( v2 ∈ G1 and v1 ∈ G2 ) 这里(v1∈G1和v2∈G2) OR (v2∈G1和v1∈G2)

You're describing the minimum cut problem. 您正在描述最小切割问题。 It's equivalent to finding the maximum flow , and the Ford Fulkerson algorithm can find it. 等效于找到最大流量福特·富尔克森算法可以找到它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何查找两个给定顶点之间是否存在路径JAVA - How to find if a path exists between two given vertex JAVA 如何在Titan Graph数据库中使用Java API在新顶点和现有顶点之间创建边 - how to create edge between new vertex and existing vertex using Java API in Titan Graph database 获取两个图顶点之间的边列表 - Get Edge list between two graph Vertex 如何模拟Tinkerpop蓝图Vertex和Edge对象? - How to mock Tinkerpop blueprint Vertex and Edge objects? 如何在 orientdb 3.0 中确保唯一的顶点和边? - How to ensure unique vertex and edge in orientdb 3.0? JgraphX如何使一条边将一个顶点连接到另一个边(而不是另一个顶点)? - JgraphX How can you make an edge connect a vertex to another edge (instead of another vertex)? 如何在Orientdb中使用HTTP创建顶点和边缘? - How can i create vertex and edge with HTTP in Orientdb? 如何使用 gremlin 和 janusgraph 获得组合的顶点和边属性 - How to get the combined vertex and edge properties with gremlin and janusgraph 如何在Orientdb中获取顶点并创建边 - How can I get vertex and create edge in Orientdb Gremlin:从给定顶点查找所有下游(出)路径 - Gremlin: Find all downstream (out) paths from given Vertex
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM