Return connected components as subgraphs.
Parameters : | G : NetworkX Graph
|
---|---|
Returns : | glist : list
|
See also
Notes
The list is ordered from largest connected component to smallest. For undirected graphs only.
Examples
Get largest connected component as subgraph
>>> G=nx.path_graph(4)
>>> G.add_edge(5,6)
>>> H=nx.connected_component_subgraphs(G)[0]