Strongly Connected Components: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
== Parameters ==  
== Parameters ==  


V: number of vertices
$V$: number of vertices


E: number of edges
$E$: number of edges


== Table of Algorithms ==  
== Table of Algorithms ==  

Revision as of 09:19, 10 April 2023

Description

The strongly connected components or diconnected components of an arbitrary directed graph form a partition into subgraphs that are themselves strongly connected.

Related Problems

Related: Transitive Closure, Maximum Strongly Connected Component, Strong Connectivity (dynamic), 2 Strong Components (dynamic), Connected Subgraph

Parameters

$V$: number of vertices

$E$: number of edges

Table of Algorithms

Currently no algorithms in our database for the given problem.

Time Complexity Graph

Strongly Connected Components - Time.png

Space Complexity Graph

Strongly Connected Components - Space.png

Time-Space Tradeoff

Strongly Connected Components - Pareto Frontier.png