Generate a single line of the graph G in adjacency list format.
Parameters : | G : NetworkX graph delimiter : string, optional
|
---|---|
Returns : | lines : string
|
See also
Examples
>>> G = nx.lollipop_graph(4, 3)
>>> for line in nx.generate_adjlist(G):
... print(line)
0 1 2 3
1 2 3
2 3
3 4
4 5
5 6
6