Software Engineering KB

Home

❯

01 Foundations

❯

01 Algorithms

❯

01 Concept

❯

Strongly Connected Components

Strongly Connected Components

Feb 10, 20261 min read

  • algorithms
  • graph-algorithms
  • strongly-connected-components

Strongly Connected Components

← Back to Graph Algorithms

Maximal subsets of vertices in a directed graph where every vertex is reachable from every other vertex in the subset. Identifying SCCs is important for understanding the structure of directed graphs.

Key Properties

  • Tarjan’s Algorithm
  • Kosaraju’s Algorithm

Related

  • Traversal (SCC algorithms rely on DFS)

algorithms graph-algorithms strongly-connected-components


Graph View

  • Strongly Connected Components
  • Key Properties
  • Related

Backlinks

  • Graph Algorithms
  • Kosaraju's Algorithm
  • Tarjan's Algorithm

Created with Quartz v4.5.2 © 2026

  • GitHub