mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-07-14 16:14:42 +08:00
Strongly Connected Component
A directed graph is called strongly connected if there is a path
in each direction between each pair of vertices of the graph.
In a directed graph G that may not itself be strongly connected,
a pair of vertices u
and v
are said to be strongly connected
to each other if there is a path in each direction between them.
Graph with strongly connected components marked