Objective: – Given a binary tree, print it in Top View of it.
What is Top View: Top view means when you look the tree from the top the nodes you will see will be called the top view of the tree. See the example below.
as you can see in the example above,8, 4, 2, 1, 3, 7 is the Top view of the given binary tree.
Approach: