#

Note

This documents the development version of NetworkX. Documentation for the current release can be found here.

#

networkx.algorithms.components.number_connected_components

number_connected_components(G)[source]

Returns the number of connected components.

Parameters

G (NetworkX graph) – An undirected graph.

Returns

n – Number of connected components

Return type

integer

Notes

For undirected graphs only.