number_connected_components#

number_connected_components(G)[source]#

Returns the number of connected components.

Parameters:
GNetworkX graph

An undirected graph.

Returns:
ninteger

Number of connected components

Raises:
NetworkXNotImplemented

If G is directed.

Notes

For undirected graphs only.

Examples

>>> G = nx.Graph([(0, 1), (1, 2), (5, 6), (3, 4)])
>>> nx.number_connected_components(G)
3
----

Additional backends implement this function

cugraph : GPU-accelerated backend.

parallelA networkx backend that uses joblib to run graph algorithms in parallel. Find the nx-parallel’s configuration guide here

The parallel computation is implemented by dividing the list of connected components into chunks and then finding the length of each chunk in parallel and then adding all the lengths at the end.

Additional parameters:
get_chunksstr, function (default = “chunks”)

A function that takes in a list of connected components as input and returns an iterable component_chunks. The default chunking is done by slicing the list of connected components into n_jobs number of chunks.

[Source]