Finding Bridges in a graph C++ (BOOST)?
问题 I was reading through the BOOST library and noticed that they dint have an algorithm to find bridges in a graph, they do have one to find articulation points. Is there anyway this could be done efficiently? I have an idea: 1. Use the BOOST to find articulation points 2. Using out_edges,find all edges attached the each articulation point 3. remove them and calculate the number on connected components,( I assume my graph is originally fully connected), if its more than 1,i add this edge to the