Python:如何查找图中两个节点之间是否存在路径?

发布于 2024-08-23 11:07:51 字数 29 浏览 9 评论 0原文

我正在使用Python的networkx包。

I am using networkx package of Python.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

风吹短裙飘 2024-08-30 11:07:51

检查图中两个节点之间是否存在路径 -

>>> import networkx as nx
>>> G=nx.Graph()
>>> G.add_edge(1,2)
>>> G.add_edge(2,3)
>>> nx.has_path(G,1,3)
True
>>> G.add_edge(4,5)
>>> nx.has_path(G,1,5)
False

有关详细信息,请参阅 has_path — NetworkX 1.7 文档

To check whether there is a path between two nodes in a graph -

>>> import networkx as nx
>>> G=nx.Graph()
>>> G.add_edge(1,2)
>>> G.add_edge(2,3)
>>> nx.has_path(G,1,3)
True
>>> G.add_edge(4,5)
>>> nx.has_path(G,1,5)
False

For more information, please refer has_path — NetworkX 1.7 documentation

檐上三寸雪 2024-08-30 11:07:51
>>> import networkx as nx
>>> G=nx.empty_graph()
>>> G.add_edge(1,2)
>>> G.add_edge(2,3)
>>> G.add_edge(4,5)
>>> nx.path.bidirectional_dijkstra(G,1,2)
(1, [1, 2])
>>> nx.path.bidirectional_dijkstra(G,1,3)
(2, [1, 2, 3])
>>> nx.path.bidirectional_dijkstra(G,1,4)
False
>>> nx.path.bidirectional_dijkstra(G,1,5)
False
>>> 

您还可以将结果用作布尔值

>>> if nx.path.bidirectional_dijkstra(G,1,2): print "path exists"
... 
path exists
>>> if nx.path.bidirectional_dijkstra(G,1,4): print "path exists"
... 
>>> 
>>> import networkx as nx
>>> G=nx.empty_graph()
>>> G.add_edge(1,2)
>>> G.add_edge(2,3)
>>> G.add_edge(4,5)
>>> nx.path.bidirectional_dijkstra(G,1,2)
(1, [1, 2])
>>> nx.path.bidirectional_dijkstra(G,1,3)
(2, [1, 2, 3])
>>> nx.path.bidirectional_dijkstra(G,1,4)
False
>>> nx.path.bidirectional_dijkstra(G,1,5)
False
>>> 

You can also use the result as a boolean value

>>> if nx.path.bidirectional_dijkstra(G,1,2): print "path exists"
... 
path exists
>>> if nx.path.bidirectional_dijkstra(G,1,4): print "path exists"
... 
>>> 
如梦 2024-08-30 11:07:51

使用不相交集数据结构:

为图中的每个顶点创建一个单例集,然后合并包含图中每条边的每个顶点对的集合。

最后,如果两个顶点位于同一集合中,您就知道它们之间存在路径。

请参阅关于不相交集数据结构的 wikipedia 页面。

这比使用路径查找算法要有效得多。

Using a disjoint set data structure:

Create a singleton set for every vertex in the graph, then union the sets containing each of the pair of vertices for every edge in the graph.

Finally, you know a path exists between two vertices if they are in the same set.

See the wikipedia page on the disjoint set data structure.

This is much more efficient than using a path finding algorithm.

尛丟丟 2024-08-30 11:07:51

使用

shortest_path(G, source, target)

或 最短路径方法之一。但是,如果您只有两个特定节点来测试连接性,请远离返回所有节点之间路径的方法。

Use

shortest_path(G, source, target)

or one of the Shortest Path methods. Stay clear of the methods which return paths between all nodes however if you merely have two specific nodes to test for connectivity.

厌味 2024-08-30 11:07:51
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文