为boost::graph::copy_graph提供顶点映射参数

Provide vertex-mapping parameter to boost::graph::copy_graph

本文关键字:graph 顶点 映射 参数 boost copy      更新时间:2023-10-16

boost函数boost::graph::copy_graph

 template <class VertexListGraph, class MutableGraph>  void
 copy_graph(const VertexListGraph& G, MutableGraph& G_copy,
     const bgl_named_params<P, T, R>& params = all defaults)

在其参数说明中列出UTIL/OUT: orig_to_copy(Orig2CopyMap c)是复制顶点到原始顶点的映射。我需要这张地图!

(滚动到http://www.boost.org/doc/libs/1_55_0/libs/graph/doc/copy_graph.html底部)

如何访问/提供最后一个参数orig_to_copy?你能给我一个代码示例(完成这个代码)吗?

void doSomething(graph_t& g){
  graph_t g_copy;
  copy_graph(g, g_copy, [...???...]);
  // here I would like to access the Orig2CopyMap
}

找到了这个解决方案:http://d.hatena.ne.jp/gununu/20111006/1317880754

void doSomething(graph_t& g){
    typedef graph_t::vertex_descriptor vertex_t;
    typedef std::map<vertex_t, vertex_t> vertex_map_t;
    vertex_map_t vertexMap;
    // this boost type is needed around the map
    associative_property_map<vertex_map_t> vertexMapWrapper(vertexMap);
    graph_t g_copy;
    copy_graph(g, g_copy, boost::orig_to_copy(vertexMapWrapper));
    std::cout << "mapping from copy to original: " << std::endl;
    for(auto& iter : vertexMap){
        std::cout << iter.first << " -> " << iter.second << std::endl;
    }
}

像这样:

typedef boost::graph_traits<graph_t>::vertex_descriptor vertex_t;
typedef boost::property_map<graph_t, boost::vertex_index_t>::type index_map_t;
//for simple adjacency_list<> this type would be more efficient:
typedef boost::iterator_property_map<typename std::vector<vertex_t>::iterator,
    index_map_t,vertex_t,vertex_t&> IsoMap;
//maps vertices of g to vertices of g_copy
std::vector<vertex_t> isoValues( num_vertices(g));    
IsoMap mapV( isoValues.begin());
boost::copy_graph( g, g_copy, boost::orig_to_copy(mapV) ); //means g_copy += g