我想为算法创建一个图表,该图表需要仅由adjacency_list
提供的图表概念。顶点id本身是随机的size_t
和非连续的,因此使用向量作为底层存储是不可能的,但这样做不编译:
#include <boost/graph/adjacency_list.hpp>
int main()
{
using namespace boost;
using out_edge_storage = setS;
// using vertex_storage = vecS; // compiles Ok
using vertex_storage = setS; // error: no matching function for call to 'add_edge'
using graph = adjacency_list<out_edge_storage, vertex_storage, undirectedS>;
graph g;
add_edge(3, 44, g);
add_edge(1024102400, 3, g); // uses too much space (bad_alloc) with vecS
}
我不需要任何额外的自定义顶点属性,也不需要在创建后修改图形。阅读文档[1]我找不到add_edge()
的额外要求是什么原因。
如何使用set或hash set数据类型构建图形,在文档中可以找到我错过的详细信息?
1:http://www.boost.org/doc/libs/1_58_0/libs/graph/doc/using_adjacency_list.html + http://www.boost.org/doc/libs/1_63_0/libs/graph/doc/adjacency_list.html
(关于adjacency_list + vecS的其他stackoverflow问题(例如here)远非最小化,并没有帮助。)
答案 0 :(得分:1)
我不需要任何额外的自定义顶点属性,也不需要在创建后修改图形。
好吧,也许不在你的脑海里,但因为矢量索引不再是&#34;双倍&#34;作为顶点id,您希望某处将这些数字附加到顶点描述符。
这恰好是您要求/渴望财产的理由。我建议使用内部属性如果您希望算法也自动知道如何使用该数字来识别您的索引。
<强> Live On Coliru 强>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graph_utility.hpp>
using graph = boost::adjacency_list<boost::setS, boost::setS, boost::undirectedS,
boost::property<boost::vertex_index_t, size_t> >;
int main() {
graph g;
auto A = add_vertex(3, g);
auto B = add_vertex(44, g);
auto C = add_vertex(1024102400, g);
add_edge(A, B, g);
add_edge(C, A, g);
print_graph(g);
}
印刷:
3 <--> 44 1024102400
44 <--> 3
1024102400 <--> 3