gpt4 book ai didi

c++ - 使用 Dijkstra 在 boost 图中查找最短路径

转载 作者:行者123 更新时间:2023-11-30 05:01:19 27 4
gpt4 key购买 nike

我是 boost 图形库的新手,我正在尝试使用 boost 图形库在图中找到从一个顶点到另一个顶点的最短路径。为了做到这一点,我找到了一些关于如何使用前身 map 的说明,但它对我不起作用。当我尝试调用 p[some_vertex] 时,我收到一条错误消息,指出未定义 [] 运算符。谁能告诉我为什么以及我做错了什么?

typedef property<edge_weight_t, double, property<edge_index_t, tElementIDVector>> tEdgeProperty;
typedef property<vertex_index_t, tElementID> VertexIDPorperty;
typedef adjacency_list<vecS, setS, directedS, VertexIDPorperty, tEdgeProperty> tGraph;

typedef tGraph::vertex_descriptor tVertex;
typedef tGraph::edge_descriptor tEdge;

vector<tVertex> p(num_vertices(graph));
vector<double> d(num_vertices(graph));
// call dijkstra algorithm from boost to find shortest path
dijkstra_shortest_paths(graph, s,
predecessor_map(&p[0]).
distance_map(boost::make_iterator_property_map(d.begin(), get(boost::vertex_index, graph))));

//find path from start to end vertex
list<tVertex> pathVertices;
tVertex current = goal;
while (current != start)
{
pathVertices.push_front(current);
current = p[current]; //this is where the error occures
}

最佳答案

来自 cppreference :

std::vector::operator[]

reference       operator[]( size_type pos );
const_reference operator[]( size_type pos ) const;

接受 size_t 指定 vector 元素的位置。

但是在您的代码中,currenttVertex 类型。

如果你想使用 operator[]tVertex 参数,你应该覆盖它。

关于c++ - 使用 Dijkstra 在 boost 图中查找最短路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50351107/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com