networkx.generators.classic.balanced_tree¶
-
balanced_tree(r, h, create_using=None)[source]¶ Return the perfectly balanced
r-ary tree of heighth.Parameters: - r (int) – Branching factor of the tree; each node will have
rchildren. - h (int) – Height of the tree.
- create_using (NetworkX graph constructor, optional (default=nx.Graph)) – Graph type to create. If graph instance, then cleared before populated.
Returns: G – A balanced
r-ary tree of heighth.Return type: NetworkX graph
Notes
This is the rooted tree where all leaves are at distance
hfrom the root. The root has degreerand all other internal nodes have degreer + 1.Node labels are integers, starting from zero.
A balanced tree is also known as a complete r-ary tree.
- r (int) – Branching factor of the tree; each node will have