You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" Back edge method of finding articulation points.
40
+
41
+
Back edge: an edge that connects a node to an ancestor of its parent.
42
+
43
+
Claim: If a vertex u has a child v and none of the vertices in the v-subtree have a back edge to ANY vertex discovered before u (this works bc data structure is a tree), u is an articulation point.
44
+
- i.e. if u is removed, then the v-subtree will be disconnected from the graph.
0 commit comments