Function articulation_points
Source pub fn articulation_points<N, E, Ix>(graph: &Graph<N, E, Ix>) -> HashSet<N>
Expand description
Finds all articulation points (cut vertices) in an undirected graph
An articulation point is a vertex whose removal increases the number of connected components.
§Arguments
graph
- The undirected graph to analyze
§Returns
- A set of articulation points