gpt4 book ai didi

c++ - boost 图库图形构建;迭代添加边缘属性

转载 作者:行者123 更新时间:2023-11-30 01:55:50 25 4
gpt4 key购买 nike

我正在尝试使用 boost 图形库定义图形。我已经从一个文本文件中读取以获取如下定义的 from_to_and_distance 矩阵。我打算简单地遍历矩阵来定义图形的边缘,但我不明白如何使用这种方法定义边缘属性。具体来说,我想使用如下定义的 distance_from_a_to_b 变量,并将其分配给每个主题边缘。正如您所见,我对 C++ 比较陌生,所以虽然库文档可能有答案,但我似乎无法理解。有人可以帮忙吗?我计划在完成此图后将其输入 dijkstra 算法 - 如果这会产生影响的话。

提前致谢!

struct site_properties{
};

struct reach_properties{
double distance;
};

//Note that from_to_and_distance_matrix is std::vector<std::vector<double> > and
//includes inner vectors of [from_node,to_node,distance]

boost::adjacency_list<boost::vecS,boost::vecS,boost::directedS,site_properties,reach_properties> graph(unique_node_ids.size());

for(unsigned int i = 0; i < from_to_and_distance_matrix.size(); i++){
int node_a = (int)from_to_and_distance_matrix[i][0];
int node_b = (int)from_to_and_distance_matrix[i][1];

//How do I assign the distance_from_a_to_b variable to the edge?!
double distance_from_a_to_b = from_to_and_distance_matrix[i][2];

boost::add_edge(node_a,node_b,graph);
}

最佳答案

因为你要将它提供给 dijkstra(我假设 dijkstra_shortest_paths),你可以通过将你的距离存储在 edge_weight 属性中来简化它,该算法将默认读取。

#include <vector>
#include <stack>
#include <iostream>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>

int main()
{
// [from_node,to_node,distance]
std::vector<std::vector<double>> from_to_and_distance_matrix =
{{0,1,0.13}, {1,2,0.1}, {1,3,0.2},
{2,3,0.1}, {1,3,0.3}, {2,4,0.1}};

using namespace boost;
typedef adjacency_list<listS, vecS, directedS, no_property,
property<edge_weight_t, double>> graph_t;
graph_t g;
for(auto& v: from_to_and_distance_matrix)
get(edge_weight, g)[add_edge(v[0], v[1], g).first] = v[2];

std::cout << "Loaded graph with " << num_vertices(g) << " nodes\n";

// call Dijkstra
typedef graph_traits<graph_t>::vertex_descriptor vertex_descriptor;
std::vector<vertex_descriptor> p(num_vertices(g)); // predecessors
std::vector<double> d(num_vertices(g)); // distances
vertex_descriptor start = vertex(0, g); // starting point
vertex_descriptor goal = vertex(4, g); // end point

dijkstra_shortest_paths(g, start,
predecessor_map(&p[0]).distance_map(&d[0]));

// print the results
std::stack<vertex_descriptor> path;
for(vertex_descriptor v = goal; v != start; v = p[v])
path.push(v);
path.push(start);

std::cout << "Total length of the shortest path: " << d[4] << '\n'
<< "The number of steps: " << path.size() << '\n';
while(!path.empty()) {
int pos = path.top();
std::cout << '[' << pos << "] ";
path.pop();
}
std::cout << '\n';
}

在线演示:http://coliru.stacked-crooked.com/a/4f065507bb5bef35

关于c++ - boost 图库图形构建;迭代添加边缘属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20364775/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com