GraphTheory
ArticulationPoints
compute list of articulation points
Calling Sequence
Parameters
Description
Examples
ArticulationPoints(G)
G
-
undirected graph
A vertex v in a graph G is an articulation point of G if removing it and its incident edges increases the number of connected components of G.
ArticulationPoints(G) returns a list of the vertices of G which are articulation points.
The articulation points of a graph can be computed when traversing the graph using depth-first-search in linear time in the size of the graph.
See Also
BiconnectedComponents
IsBiconnected
IsConnected
VertexConnectivity
Download Help Document