In-order Traversal
Visit left branch first, then the current node, and finally the right branch.
Pre-order Traversal
Visits the current node first, then the left subtree, and finally the right subtree.
Post-order Traversal
Visit the left subtree, then the right subtree, and finally the current node.