What are the tasks performed during inorder traversal?
3 years ago
Data Structure and Algorithm
- Traverse the left sub-tree
- Process the root node
- Traverse the right sub-tree
Sanisha Maharjan
Jan 23, 2022