Preorder/Inorder/Postorder
The order of the left subtree and the right subtree is constant, and there are 3 positions for the root to occupy.
The order depends on the Comparative order of the root (recursively) during the traversal
Level-Order Traversal
Visit the nodes level by level, a queue may be applied.