1/7
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Number of nodes in a full m-ary tree with i internal nodes
mi + 1
Number of leaves in a full m-ary tree with i internal nodes
i(m - 1) + 1
Number of leaves in a full, complete m-ary tree
m^h
Number of nodes in a binary tree of height h
between h + 1 and 2^(h + 1) - 1
Number of leaves in a binary tree of height h
between 1 and 2^h
Number of nodes in a full binary tree with n internal nodes
2n + 1
Number of leaves in a full binary tree with n internal nodes
n + 1
Height of a full, complete binary tree with n nodes or leaves
approximately log(n)