Traversals
Know
In-order yields sorted output on a search tree; pre-order suits copying; post-order suits deletion; level-order needs a queue.
Apply
Pick the traversal from the task rather than by habit.
Watch out
Deleting pre-order, which frees a parent whose children are still reachable only through it.
Study move
Write all four traversals of one tree and say which is sorted.
