Given a binary tree, connect each node with its level order successor. The last node of each level should point to the first node of the next level.
Try solving this question here:
Output
Traversal using 'next' pointer: 12