Roman C. answered 12/16/15
Tutor
5.0
(851)
Masters of Education Graduate with Mathematics Expertise
Note that a full binary tree of height h has exactly 2h leaves.
Proof:
Base: or h=0, the full tree has just the root node, which is a leaf. This is 20 leaves.
Induction: Assume for some k≥0, that the height h full tree has 2h leaves when h=k. Then when h=k+1, the full tree of height h is formed by letting the child nodes of it's root be roots of two height k full subtrees. So the tree will have 2k+2k = 2·2k = 2k+1 = 2h leaves as desired.