gpt4 book ai didi

c++ - 从 boost::labeled_graph 获取节点标签

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:44:05 25 4
gpt4 key购买 nike

我想在 BGL 的 labeled_graph 中检索标记节点的标签,但找不到执行此操作的方法。

以下 MWE 演示了我正在寻找的内容:

//g++ -O3 question.cpp -o question.exe -I. --std=c++11 -lprotobuf-lite -lpthread -lz -losmpbf
#include <iostream>

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/labeled_graph.hpp>
#include <boost/graph/iteration_macros.hpp>

typedef long long node_id_t;

typedef boost::adjacency_list<
boost::listS, // Store out-edges of each vertex in a std::list
boost::listS, // Store vertex set in a std::list
boost::bidirectionalS, // The file dependency graph is directed
boost::no_property, // vertex properties
boost::no_property // edge properties
> AdjGraph;

typedef boost::labeled_graph<
AdjGraph,
node_id_t // Node ID
> LabeledGraph;

int main(){
LabeledGraph g;

add_vertex( 10, g );
add_vertex( 20, g );
add_vertex( 30, g );
add_vertex( 40, g );
add_vertex( 50, g );

boost::add_edge_by_label(10,30,g);
boost::add_edge_by_label(10,50,g);
boost::add_edge_by_label(30,40,g);
boost::add_edge_by_label(50,20,g);

BGL_FORALL_EDGES(e, g, LabeledGraph){
auto source_n = boost::source(e,g);
//How do I do the following?
//std::cerr<<boost::get_label_of_vertex(source_n)<<std::endl;
}
}

命令 boost::get_label_of_vertex(source_n) 在我的挖掘中似乎不存在。

您是否知道它是否存在,或者是否有其他方法可以获取此信息?

最佳答案

啊。我发现你的问题顺序错误:)

我不认为labeled_graph<>适配器具有此功能。相反,就像我的 other answer我建议将标签存储为顶点属性(捆绑或 vertex_index_t)。

捆绑

Live On Coliru

// g++ -O3 question.cpp -o question.exe -I. --std=c++11 -lprotobuf-lite -lpthread -lz -losmpbf
#include <iostream>

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/labeled_graph.hpp>
#include <boost/graph/iteration_macros.hpp>

struct MyVertex {
long long label;

MyVertex(long long label = 0) : label(label) {}
};


typedef boost::adjacency_list<boost::listS, // Store out-edges of each vertex in a std::list
boost::listS, // Store vertex set in a std::list
boost::bidirectionalS, // The file dependency graph is directed
MyVertex, // vertex properties
boost::no_property // edge properties
> AdjGraph;

int main() {
AdjGraph g;

std::map<size_t, AdjGraph::vertex_descriptor> vertex_map;

for (int i = 1; i<6; ++i)
vertex_map.emplace(10*i, add_vertex(10*i, g));

boost::add_edge(vertex_map[10], vertex_map[30], g);
boost::add_edge(vertex_map[10], vertex_map[50], g);
boost::add_edge(vertex_map[30], vertex_map[40], g);
boost::add_edge(vertex_map[50], vertex_map[20], g);

BGL_FORALL_EDGES(e, g, AdjGraph) {
auto source_n = boost::source(e, g);
std::cerr << g[source_n].label << "\n";
}
}

vertex_index_t内部属性(property)

Live On Coliru

// g++ -O3 question.cpp -o question.exe -I. --std=c++11 -lprotobuf-lite -lpthread -lz -losmpbf
#include <iostream>

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/labeled_graph.hpp>
#include <boost/graph/iteration_macros.hpp>

typedef boost::adjacency_list<boost::listS, // Store out-edges of each vertex in a std::list
boost::listS, // Store vertex set in a std::list
boost::bidirectionalS, // The file dependency graph is directed
boost::property<boost::vertex_index_t, size_t>, // vertex properties
boost::no_property // edge properties
> AdjGraph;

int main() {
AdjGraph g;

std::map<size_t, AdjGraph::vertex_descriptor> vertex_map;

for (int i = 1; i<6; ++i)
vertex_map.emplace(10*i, add_vertex(10*i, g));

boost::add_edge(vertex_map[10], vertex_map[30], g);
boost::add_edge(vertex_map[10], vertex_map[50], g);
boost::add_edge(vertex_map[30], vertex_map[40], g);
boost::add_edge(vertex_map[50], vertex_map[20], g);

auto index = boost::get(boost::vertex_index, g);

BGL_FORALL_EDGES(e, g, AdjGraph) {
auto source_n = boost::source(e, g);
std::cerr << boost::get(index, source_n) << "\n";
}
}

关于c++ - 从 boost::labeled_graph 获取节点标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30902294/

25 4 0