-
Post-order traversal
A form of recursive execution wherein work is performed after the recursive call.
i.e. "On the way back down"
-
Pre-order traversal
A form of recursive execution wherein work is performed before the recursive call.
i.e. "On the way down"