Skip to content

Connected Components

Jonathan Paugh edited this page Jan 3, 2019 · 2 revisions

Determines the number of connected components in the network.

Explanation

On directed graphs: detect strongly and weakly connected components.

On undirected graphs: detect only weakly connected components.

Source code

See org.gephi.statistics.plugin.ConnectedComponents.java.

Acknowledgments

This code was implemented by Patrick McSweeney.

Implemented Algorithm

Robert Tarjan, Depth-First Search and Linear Graph Algorithms, in SIAM Journal on Computing 1 (2): 146–160 (1972)

Additional Reading

Clone this wiki locally