Mental Model
We want to group tree nodes by their vertical columns from left to right, and within each column, nodes are ordered top to bottom.
Analogy: Imagine standing in front of a tree and taking pictures from left to right columns; nodes in the same column appear in the same photo, ordered from top to bottom.
1
/ \
2 3
/ \ \
4 5 6
Columns: -2 -1 0 1 2
Nodes: 4 2 1,5 3 6