为什么我不能在OutEdgeList = listS和VertexList = listS中使用boost图形write_graphviz

时间:2011-04-25 17:51:16

标签: boost boost-graph

为什么我不能编译以下简单的应用程序。如果我将listS更改为vecS,那么每件事情都可以。 (我使用的是boost 1.46.1和gcc 4.4.5)

#include <iostream>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graphviz.hpp>

int main(int argc, const char *argv[]) {
    boost::adjacency_list< boost::listS, boost::listS, boost::bidirectionalS > g;

    boost::write_graphviz(std::cout, g);

    return 0;
}

1 个答案:

答案 0 :(得分:6)

write_graphviz需要vertex_id属性来显示顶点标识符标签。使用adjacency_list作为顶点容器的listS不会自动提供此vertex_id属性。这种行为是有道理的,因为在链表中,没有可用于唯一标识元素的键或索引。请记住,链表既不是随机访问序列,也不是关联容器。

您必须提供自己的vertex_id属性获取器,或者使用具有固有vertex_id属性的顶点容器。