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
The problem is to find the points of articulation of a graph. An articulation point of a graph is a vertex such that if we remove it, we increase the number of connected components. The DFS algorithm is used to solve this problem.