graphscope.nx.generators.small.sedgewick_maze_graph#

graphscope.nx.generators.small.sedgewick_maze_graph(create_using=None)[source]#

Return a small maze with a cycle.

This is the maze used in Sedgewick, 3rd Edition, Part 5, Graph Algorithms, Chapter 18, e.g. Figure 18.2 and following [1]. Nodes are numbered 0,..,7

Parameters:

create_using (NetworkX graph constructor, optional (default=nx.Graph)) – Graph type to create. If graph instance, then cleared before populated.

Returns:

G – Small maze with a cycle

Return type:

networkx Graph

References