Groups
Category
Strongly Connected Components (SCCs) partition a directed graph into maximal groups where every vertex can reach every other vertex in the group.
Tarjanโs algorithm finds all Strongly Connected Components (SCCs) of a directed graph in a single depth-first search using a stack.