使用Boost的图breadth_first_search()在未加权、无向图中查找路径

发布于 2024-07-11 14:59:59 字数 223 浏览 7 评论 0原文

我使用的是 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 技术交流群。

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

发布评论

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

评论(3

顾北清歌寒 2024-07-18 14:59:59

是的,从 u 开始执行 breadth_first_search() 。

FOR every vertex i meet
  IF i==v: BREAK
  record predecessor of i as i.p

要找到最短路径,请从 v 开始:

PRINT_PATH(u, v)
  IF v==u
    print u
  ELSEIF v.p==NIL
    print 'no path from u to v exists'
  ELSE PRINT_PATH(u, v.p)
    print v

Yes, do breadth_first_search() starting from u.

FOR every vertex i meet
  IF i==v: BREAK
  record predecessor of i as i.p

To find the shortest path, start from v:

PRINT_PATH(u, v)
  IF v==u
    print u
  ELSEIF v.p==NIL
    print 'no path from u to v exists'
  ELSE PRINT_PATH(u, v.p)
    print v
谁的年少不轻狂 2024-07-18 14:59:59

您应该使用最短路径算法之一, 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.

少女的英雄梦 2024-07-18 14:59:59

您需要使用最小生成树:搜索算法。 这是一个非常简单直接的贪心算法。

You need to use a minimum spanning tree: search algorithm. It's quite a simple straightforward greedy algorithm.

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