使用Boost的图breadth_first_search()在未加权、无向图中查找路径
我使用的是 adjacency_list
图,具有无向和未加权的边。 我需要找到顶点 u
和顶点 v
之间的最短路径。 我应该从 u
开始使用 breadth_first_search()
吗? 当到达v
时,如何获取路径,如何停止搜索?
谢谢!
I'm using an adjacency_list
graph, with undirected and unweighted edges. I need to find a shortest path between vertex u
and vertex v
.
Should I use breadth_first_search()
starting from u
? When reaching v
, how do I obtain the path, and how do I stop the search?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,从 u 开始执行 breadth_first_search() 。
要找到最短路径,请从 v 开始:
Yes, do breadth_first_search() starting from u.
To find the shortest path, start from v:
您应该使用最短路径算法之一, Dijkstra Shortest Path 是最合适的,因为您需要找到两个顶点之间的路径。 有一个示例在 boost 发行版中的使用。 有多种选项可用于从该函数获取输出:通过提供距离属性映射或构建前趋映射或编写自定义访问者。
You should use one of the shortest path algorithms, Dijkstra Shortest Path being the most suitable since you need to find the path between just two vertexes. There is an example for its usage in the boost distribution. There are several options for obtaining output from that function: either by supplying a distance property map or build a predecessor map or writing a custom visitor.
您需要使用最小生成树:搜索算法。 这是一个非常简单直接的贪心算法。
You need to use a minimum spanning tree: search algorithm. It's quite a simple straightforward greedy algorithm.