A tree traversal method that visits nodes in the order: root, left child, right child. It's used to create a copy of the tree.
1 2 3 4 5 6 7 8 9 10 11 12