Mental Model
A binary search tree keeps smaller values on the left and bigger on the right, so the smallest values appear first if we look from left to right.
Analogy: Imagine a sorted bookshelf where smaller books are on the left and bigger books on the right. To find the kth smallest book, you start from the left and count until you reach the kth one.
5
/ \
3 7
/ \ \
2 4 8
↑ (root)