我正在使用Boost Graph Library来存储具有double
边权重和double
顶点权重的无向图。在我的代码中的几个地方,我需要应用Dijkstra的算法来搜索最短路径。这很有效,直到我决定用我自己的权重暂时覆盖存储的边权重(仅暂时,不应修改图权重)。我的代码基本上是这样的:
// Initial typedefs
typedef boost::property<boost::edge_weight_t, double> edge_weight_t;
typedef boost::property<boost::vertex_discover_time_t, double> vertex_weight_t;
typedef boost::adjacency_list<boost::vecS,
boost::vecS,
boost::undirectedS,
vertex_weight_t,
edge_weight_t> graph_t;
// In a function, where graph is a const reference of type graph_t
std::vector<double> pathLengths( boost::num_vertices( graph ) );
boost::property_map<graph_t, boost::edge_weight_t>::type weightMap;
boost::graph_traits<graph_t>::edge_iterator e_it, e_it_end;
for( boost::tie( e_it, e_it_end ) = boost::edges( graph );
e_it != e_it_end;
++e_it )
{
weightMap[ *e_it ] = 1.0;
}
boost::dijkstra_shortest_paths( graph,
boost::vertex( vertex, graph ),
boost::distance_map( &pathLengths[0] ).weight_map( weightMap ) );
虽然上面代码中graph
是 const引用,但之后图表的边权重将更改。我究竟做错了什么?或者更具体地说,如何在加权图中暂时覆盖边权重?
显然,我可以简单地存储当前的边缘权重,用我的权重替换它们,然后再将它们更改回去。但是,我确信我有错,我不想忽视这个问题。
答案 0 :(得分:4)
我相信,我有同样的问题 - 我想暂时(对于特定的搜索算法运行)修改边权重,而不是永久地更改图本身。经过一番搜索,我找到了这个,它允许你注册一个用于生成权重的仿函数。这用作weight_map参数:
http://www.boost.org/doc/libs/1_51_0/boost/property_map/function_property_map.hpp