Complete the sentence: A full binary tree is a tree where every node has either {{BLANK_1}} or zero children.
A full binary tree is a tree where every node has either [1] or zero children.
A full binary tree means each node has exactly two children or none at all.
Complete the sentence: A complete binary tree is a tree where all levels are fully filled except possibly the {{BLANK_1}} level, which is filled from left to right.
A complete binary tree is a tree where all levels are fully filled except possibly the [1] level, which is filled from left to right.
In a complete binary tree, all levels except possibly the last are fully filled, and the last level is filled from left to right.
Fix the error in the sentence: A perfect binary tree is a tree where all internal nodes have two children and all leaves are at {{BLANK_1}} level.
A perfect binary tree is a tree where all internal nodes have two children and all leaves are at [1] level.
In a perfect binary tree, all leaves are at the same level, making the tree completely balanced.
Fill both blanks to complete the definition: A {{BLANK_1}} binary tree is always a {{BLANK_2}} binary tree, but not all {{BLANK_2}} binary trees are {{BLANK_1}}.
A [1] binary tree is always a [2] binary tree, but not all [2] binary trees are [1].
A perfect binary tree is always full because all internal nodes have two children and all leaves are at the same level. However, a full binary tree does not have to be perfect.
Fill all four blanks to complete the statement: In a {{BLANK_1}} binary tree, nodes are filled level by level from left to right; in a {{BLANK_2}} binary tree, every node has {{BLANK_3}} or zero children; and in a {{BLANK_4}} binary tree, all leaves are at the same level.
In a [1] binary tree, nodes are filled level by level from left to right; in a [2] binary tree, every node has [3] or zero children; and in a [4] binary tree, all leaves are at the same level.
A complete binary tree fills nodes level by level from left to right. A full binary tree has nodes with either two or zero children. A perfect binary tree has all leaves at the same level.