Return the perfectly balanced r-tree of height h.
Parameters : | r : int
h : int
create_using : NetworkX graph type, optional
|
---|---|
Returns : | G : networkx Graph
|
Notes
This is the rooted tree where all leaves are at distance h from the root. The root has degree r and all other internal nodes have degree r+1.
Node labels are the integers 0 (the root) up to number_of_nodes - 1.
Also refered to as a complete r-ary tree.