这个问题与:Using boost connected components with cartesian points
我在示例中进行了一些更改以使用笛卡尔点。这是我当前的代码:
using namespace boost;
typedef adjacency_list <vecS, vecS, undirectedS, cv::Point> Graph;
typedef graph_traits<Graph>::vertex_descriptor Vertex;
typedef graph_traits<Graph>::vertices_size_type VertexIndex;
int main()
{
const int VERTEX_COUNT = 10;
Graph graph(VERTEX_COUNT);
std::vector<VertexIndex> rank(num_vertices(graph));
std::vector<Vertex> parent(num_vertices(graph));
typedef VertexIndex* Rank;
typedef Vertex* Parent;
disjoint_sets<Rank,Parent> ds(&rank[0], &parent[0]);
initialize_incremental_components(graph,ds);
incremental_components(graph,ds);
graph_traits<Graph>::edge_descriptor edge;
bool flag;
std::vector<Vertex> verticesVector;
//vector of points which creates graph
std::vector<cv::Point> points;
points.push_back(cv::Point(0,0));
points.push_back(cv::Point(1,1));
points.push_back(cv::Point(2,2));
points.push_back(cv::Point(3,1));
points.push_back(cv::Point(4,2));
points.push_back(cv::Point(0,2));
points.push_back(cv::Point(2,3));
points.push_back(cv::Point(3,3));
int i = 0;
for(std::vector<cv::Point>::iterator it = points.begin();
it !=points.end();it++, i++)
{
verticesVector.push_back(add_vertex(graph));
graph[i].x = (*it).x;
graph[i].y = (*it).y;
}
typedef component_index<VertexIndex> Components;
Components components(parent.begin(), parent.end());
BOOST_FOREACH(VertexIndex current_index, components)
{
std::cout<<"component "<<current_index<<" contains: ";
BOOST_FOREACH(VertexIndex child_index, components[current_index])
{
std::cout<<child_index<<" "<<" x = "<<graph[current_index].x<<";"<<graph[current_index].y<<"||";
}
std::cout<<std::endl;
}
boost::tie(edge,flag) = add_edge(verticesVector[0],verticesVector[1],graph);
ds.union_set(verticesVector[0],verticesVector[1]);
boost::tie(edge,flag) = add_edge(verticesVector[1],verticesVector[2],graph);
ds.union_set(verticesVector[1],verticesVector[2]);
boost::tie(edge,flag) = add_edge(verticesVector[2],verticesVector[3],graph);
ds.union_set(verticesVector[2],verticesVector[3]);
boost::tie(edge,flag) = add_edge(verticesVector[3],verticesVector[4],graph);
ds.union_set(verticesVector[3],verticesVector[4]);
boost::tie(edge,flag) = add_edge(verticesVector[1],verticesVector[5],graph);
ds.union_set(verticesVector[1],verticesVector[5]);
boost::tie(edge,flag) = add_edge(verticesVector[5],verticesVector[6],graph);
ds.union_set(verticesVector[5],verticesVector[6]);
boost::tie(edge,flag) = add_edge(verticesVector[6],verticesVector[7],graph);
ds.union_set(verticesVector[6],verticesVector[7]);
Components components2(parent.begin(), parent.end());
/*BOOST_FOREACH(Vertex current_vertex, vertices(graph))
{
std::cout<< "representative["<<current_vertex<<"] = "
<< ds.find_set(current_vertex)<<std::endl;
}
std::cout<<std::endl;*/
for(std::vector<Vertex>::iterator it = verticesVector.begin(); it != verticesVector.end(); it++)
{
std::cout<<"representative = "<<ds.find_set((*it))<<std::endl;
}
BOOST_FOREACH(VertexIndex current_index, components2)
{
std::cout<<"component "<<current_index<<" contains: ";
BOOST_FOREACH(VertexIndex child_index, components[current_index])
{
std::cout<<child_index<<" "<<" x,y = "<<graph[current_index].x<<";"<<graph[current_index].y<<"||";
}
std::cout<<std::endl;
}
//write_graphviz(std::cout, graph);
getchar();
return 0;
}
尝试 union_set() 时出现异常:访问冲突读取位置...我无法弄清楚原因。我已阅读有关 boost lib 的所有主题,并尝试在文档中搜索。