Open In App

Strongly Connected Component meaning in DSA

Strongly Connected Component (SCC) is a concept in graph theory, specifically in directed graphs. A subgraph of a directed graph is considered to be an SCC if and only if for every pair of vertices A and B, there exists a path from A to B and a path from B to A.

Example of Strongly Connected Component

Properties of Strongly Connected Component:

How to Identify a Strongly Connected Component?

There are several algorithms to identify SCCs in a directed graph. The two most popular ones are:

 Both of these algorithms use Depth-First Search (DFS) to traverse the graph and identify the SCCs.

Applications of Strongly Connected Component:

What else can you read?

Article Tags :