Mental Model
A binary tree node holds a value and links to two child nodes, one on the left and one on the right.
Analogy: Think of a family tree where each person can have up to two children, one on the left side and one on the right side.
[Node]
/ \
[Left] [Right]
null null