O(n)
In-order traversal
Left, node, right, and the values come out sorted.
Four ways to walk a binary search tree and one way to search it, one page each. Rebuild the tree on any page and see what values that arrive already sorted do to its height.
Left, node, right, and the values come out sorted.
Visit the node, then its left and right subtrees.
Both subtrees first, the node itself last.
One level at a time, with a queue.
Compare, go left or right, repeat.