Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

node_connected_component

node_connected_component(G, n)[source]

Return the nodes in the component of graph containing node n.

Parameters :

G : NetworkX Graph

An undirected graph.

n : node label

A node in G

Returns :

comp : lists

A list of nodes in component of G containing node n.

Notes

For undirected graphs only.