Complete the sentence: A node with no children is called a {{BLANK_1}}.
A node with no children is called a [1].
A node with no children is called a leaf node in a binary tree.
Complete the sentence: The topmost node of a binary tree is called the {{BLANK_1}}.
The topmost node of a binary tree is called the [1].The root is the topmost node of a binary tree from which all other nodes descend.
Fix the error in the sentence: A node's {{BLANK_1}} is the node directly above it in the tree.
A node's [1] is the node directly above it in the tree.
The node directly above a given node is called its parent.
Fill both blanks to complete the definition: Nodes that share the same {{BLANK_1}} are called {{BLANK_2}}.
Nodes that share the same [1] are called [2].
Nodes that share the same parent are called siblings.
Fill all three blanks to complete the sentence: The {{BLANK_1}} of a node is the number of edges from the node to the {{BLANK_2}}, and the {{BLANK_3}} is the number of edges on the longest path from the node to a leaf.
The [1] of a node is the number of edges from the node to the [2], and the [3] is the number of edges on the longest path from the node to a leaf.
The depth of a node is the number of edges from the node to the root. The height is the number of edges on the longest path from the node to a leaf.