标题:关于boost graph library的问题
只看楼主
zza14006045
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2016-8-23
 问题点数:0 回复次数:2 
关于boost graph library的问题
在调用boost图库中crauser_et_al_shortest_paths最短路径算法时,如何获取前驱点列表,或者说,如何获取到其最短路径所经过的节点或边线?
typedef property_map<Graph_Mpi, vertex_index_t>::const_type IndexMap;
typedef iterator_property_map<vector<int>::iterator, IndexMap> DistanceMap;
typedef iterator_property_map<vector<graph_traits<Graph_Mpi>::vertex_descriptor>::iterator, IndexMap> Parent_Mpi;
crauser_et_al_shortest_paths(g, start, dummy_property_map(), distance);
对于dijkstra_shortest_paths我知道怎么获取,dijkstra_shortest_paths(g, start, predecessor_map(&parent[0]).distance_map(&dist[0]))这样就可以了,但是对于crauser_et_al_shortest_paths算法我搞了几天都不知道怎么获取前驱点列表,或者最短路径所经过的节点或边线。求助大神帮忙...
搜索更多相关主题的帖子: distance library start 如何 
2016-08-23 11:07
zza14006045
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2016-8-23
得分:0 
自己解决了...左猜右猜,猜了三天...
定义typedef iterator_property_map<vector<graph_traits<Graph_Mpi>::vertex_descriptor>::iterator, IndexMap> Parent_Mpi;
对其进行初始化后,代替原来的dummy_property_map()就可以了...
2016-08-23 17:32
zza14006045
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2016-8-23
得分:0 
补充:typedef adjacency_list<listS, distributedS<mpi_process_group, vecS>, directedS, VertexProperty, EdgeProperty> Graph_Mpi;
2016-08-23 17:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-468108-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 2.794933 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved