例如,以下代码在存储桶排序中声明为false。
typedef boost::adjacency_list<
boost::vecS, // outedgelist
boost::vecS, // vertexlist
> Graph;
typedef Graph::vertex_descriptor VertexDesc;
Graph graph;
boost::vector_property_map<VertexDesc> order;
boost::smallest_last_vertex_ordering(graph, order);
这是预期的吗?