我注意到,如果我调用boost::remove_vertex
,顶点会重新编入索引,从零开始。
例如:
#include <boost/graph/adjacency_list.hpp>
#include <utility>
#include <algorithm>
#include <iterator>
#include <iostream>
int main()
{
boost::adjacency_list<> g;
boost::add_vertex(g);
boost::add_vertex(g);
boost::add_vertex(g);
boost::add_vertex(g);
boost::remove_vertex(0, g); // remove vertex 0
std::pair<boost::adjacency_list<>::vertex_iterator,
boost::adjacency_list<>::vertex_iterator> vs = boost::vertices(g);
std::copy(vs.first, vs.second,
std::ostream_iterator<boost::adjacency_list<>::vertex_descriptor>{
std::cout, "\n"
});
// expects: 1, 2 and 3
// actual: 0, 1 and 2, I suspect re-indexing happened.
}
我想知道如何制作上面的代码输出1,2和3?
答案 0 :(得分:2)
顶点索引失效的原因是VertexListS
模板的顶点容器选择器(adjacency_list
)的默认值。
template <class OutEdgeListS = vecS,
class VertexListS = vecS,
class DirectedS = directedS,
...
class adjacency_list {};
当remove_vertex
为adjacency_list
调用VertexListS
为vecS
时,图表的所有迭代器和描述符都会失效。
为避免使描述符无效,您可以使用listS
代替vecS
作为VertexListS
。如果使用listS
,则无法获得隐式vertex_index
,因为描述符不是合适的整数类型。相反,对于listS
,您将使用不透明的顶点描述符类型(实现可以将其转换回列表元素引用或迭代器)。
这就是你应该使用vertex_descriptor
来引用顶点的原因。
所以你可以写
typedef boost::adjacency_list<boost::vecS,boost::listS> graph;
graph g;
graph::vertex_descriptor desc1 = boost::add_vertex(g);
boost::add_vertex(g);
boost::add_vertex(g);
boost::add_vertex(g);
boost::remove_vertex(desc1, g);
std::pair<graph::vertex_iterator,
graph::vertex_iterator> vs = boost::vertices(g);
std::copy(vs.first, vs.second,
std::ostream_iterator<graph::vertex_descriptor>{
std::cout, "\n"
});