Mental Model
Visit the left side first, then the current node, then the right side. This order visits nodes in a sorted way for binary search trees.
Analogy: Imagine reading a book where you first read the left page, then the middle page, then the right page, so you don't miss anything and keep the order.
2 / \ 1 3 Traversal order: 1 -> 2 -> 3