Three types of tree traversals are inorder, preorder, and post order.
A fourth, less often used, traversal is level-order traversal. In a level-order traveresal, all nodes at depth "d" are processed before any node at depth d + 1. Level-order traversal differs from the other traversals in that it is not done recursively; a queue is used, instead of the implied stack of recursion.
My questions on above text snippet are
- Why level order traversals are not done recursively?
- How queue is used in level order traversal? Request clarification with Pseudo code will be helpful.
Thanks!