- Traverse the left subtree.
- Visit the root.
- Traverse the right subtree.
For Binary Search Tree (BST) we can retrieve all the data in sorted order using in-order traversal.
For Binary Search Tree (BST) we can retrieve all the data in sorted order using in-order traversal.