我是boost图形库的新手,我试图使用boost图形库在Graph中找到从一个顶点到另一个顶点的最短路径。我找到了一些关于如何使用前任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
}
2条答案
按热度按时间ppcbkaq51#
cppreference:
std::vector::operator[]
接受**
size_t
**指定向量元素的位置。但是在代码中,
current
的类型是tVertex
。如果你想使用
operator[]
和tVertex
参数,你应该覆盖它。weylhg0b2#
我不能让你的想法工作,现在不得不做一些其他的改变,这就是为什么我改变了我的前任Map现在:
而且现在还能用:)