我在使用属性贴图时会看到这样的示例,但在使用结构来处理顶点和边时(我认为这称为'束')不会看到。
我在邻接列表图中定义了顶点和边缘。
struct Vertex
{
string name;
int some_int;
};
struct Edge
{
double weight;
};
图表构造如下:
typedef boost::adjacency_list<boost::listS, boost::vecS, boost::directedS, Vertex, Edge> boost_graph;
我想以Graphviz
格式打印这些对象的图形,因此我可以将其视为图像。但是,我不仅想要节点和边缘。我还希望顶点上的属性name
和边缘上的weight
出现在图像中。我怎么能这样做?
答案 0 :(得分:23)
我只是偶然发现了这个问题。虽然它有一个公认的答案,我想我也会添加我的版本。
您在图表中使用bundled property。从捆绑属性中获取属性映射的正确方法是使用boost::get
。所以你可以这样做:
boost::write_graphviz(std::cout, your_graph,
boost::make_label_writer(boost::get(&Vertex::name, your_graph)),
boost::make_label_writer(boost::get(&Edge::weight, your_graph)),
);
your_graph
是您创建的图表对象。
答案 1 :(得分:6)
我第一次给出了不良信息。这是正确的答案。
#include <boost/graph/graphviz.hpp>
using namespace boost;
// Graph type
typedef adjacency_list<vecS, vecS, directedS, VertexProperties, EdgeProperty> Graph;
Graph g;
std::vector<std::string> NameVec; // for dot file names
// write the dot file
std::ofstream dotfile (strDotFile.c_str ());
write_graphviz (dotfile, g, make_label_writer(&NameVec[0]));