Mental Model
A binary search tree keeps smaller values on the left and larger on the right. Inserting means finding the right empty spot following this rule.
Analogy: Imagine placing books on a shelf where all books with smaller titles go to the left side and bigger titles to the right. To add a new book, you walk down the shelf choosing left or right until you find an empty spot.
10 / \ 5 15 / \ / \ null null null null