In-Order Traversal
YouTube VideoSince we have fixed order on the children, we can introduce another type of traversal: in-order traversal.
-
In-order Traversal:
- Run the in-order traversal on the left child
- Access the root, write its value
- Run the in-order traversal on the right child
- Remember: Left Root Right