Python:如何查找图中两个节点之间是否存在路径?
我正在使用Python的networkx包。
I am using networkx package of Python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用Python的networkx包。
I am using networkx package of Python.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
检查图中两个节点之间是否存在路径 -
有关详细信息,请参阅 has_path — NetworkX 1.7 文档
To check whether there is a path between two nodes in a graph -
For more information, please refer has_path — NetworkX 1.7 documentation
您还可以将结果用作布尔值
You can also use the result as a boolean value
使用不相交集数据结构:
为图中的每个顶点创建一个单例集,然后合并包含图中每条边的每个顶点对的集合。
最后,如果两个顶点位于同一集合中,您就知道它们之间存在路径。
请参阅关于不相交集数据结构的 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.
使用
或 最短路径方法之一。但是,如果您只有两个特定节点来测试连接性,请远离返回所有节点之间路径的方法。
Use
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.
dijkstra_path(G,源,目标)< /代码>
<块引用>
返回加权图 G 中从源到目标的最短路径。
dijkstra_path(G, source, target)