Skip to main content

Left & Right View Of a Binary Tree Made Easy!

When talking about binary trees then the view of a binary tree is something that has the most probability to be asked in a coding interview.
In this blog post, I'm going to talk mainly about the Right & Left views of a binary tree.

There are so many ways available on the internet, that it's really a very difficult task to choose which method you should follow. Suppose, you're using one method for Left View and another method for Right View, now you need to know two different methods for two similar questions. In this blog we'll discuss a single approach by which you can solve both Left View and Right View problems.

 

Before diving directly into the approach we need to understand what exactly is this Right/Left view.
For your better understanding I've created a binary tree :

So let's try to understand the right view for this binary tree. Right View simply means looking at the tree from its right side and the only nodes visible from that view are required to be printed.
So, from the right side at level 0 we can see 1, at level 1 we can see 3 from the right side, and also 2 is being overlapped by 3 so we can't include it in our right view. Similarly, at level 2 we can see 5 and at level 3 we see 6.
So the nodes included in Right View are: 1, 3, 5, 6
Similarly, nodes included in Left View are: 1, 2, 4, 6

"So, it won't be wrong to say the node that appears for the first time at a given view level will be included in that particular view."

Implementing the above-mentioned approach :

Right View

// utility function
void right_view_func(node *root,int *level,int max_level)
{
if(root==NULL)
return ;
if(*level<max_level)
{
cout<<root->data<<" ";
*level=max_level;
};


right_view_func(root->right,level,max_level+1);
right_view_func(root->left,level,max_level+1);
}

// main function
void right_view(node *root)
{
int level=0;
right_view_func(root,&level,1);
}

Left View

// utility function
void left_view_func(node *root,int *level,int max_level)
{
if(root==NULL)
return;
if(*level<max_level)

{
cout<<root->data<<" ";
*level=max_level;
}
left_view_func(root->left,level,max_level+1);
left_view_func(root->right,level,max_level+1);
}

// main function
void left_view(node *root)
{
int level=0;
left_view_func(root,&level,1);
}


I hope this tutorial helped you.
Happy Coding!

Comments

Most Popular Posts

Coding and Mathematics ( Importance Of Maths In Programming )

Everyone wants to become a good coder but only a few manage to achieve this you know why? BECAUSE everyone wants to code and no one really wants to be a good mathematician which is the basic requirement to be a coder, yet very few know this fact and try to be a  mathematician first than a coder. What exactly is coding? It is the process of solving different technical problems using a programming language. The technical problems can vary from printing a  simple "Hello World" program to solving "2 SAT Problem" using mathematics. You might today be able to solve a few problems using your technical skills but it would help you in the long run only if you're fundamentals of mathematics are also clear. By mathematics, I don't mean the whole of it but some important topics such as Discrete Math, Algebra, Number Theory, etc. Here are some concepts of mathematics that you will use mostly in solving the technical problems : Fundamentals B...

On Which Coding Platform Should I Practice?

Which is the best online platform to practice, how to improve my coding skills? This post is all about giving answers to all such questions. If you're a beginner who has got no idea what programming is then I would recommend you step by step practice any programming language on Hackerrank. Hackerrank has modules that are self-explanatory and would slowly make you understand all the terminologies which are generally used and with practice, you'll be better at it. Moreover, if you're still not able to understand anything you can always search for your answers on GeekForGeeks or HackerEarth both of them provide one of the best tutorials on any topic. If you're an intermediate who's comfortable with any programming language then you can always improve your problem-solving skills studying Data Structures and Algorithms and practicing it. You can also improve by competitive coding. The best place to start with competitive programming according to me would be ...

How to Invert A Binary Tree (Iteratively + Recursively)?

Inverting a binary is one of the most common questions being asked these days. Often, seen many times in the ad of AlgoExpert as well. So, what is an inverted binary tree? Inverted binary tree is a simply a mirror image of given binary tree. Example : So, all we need to do is " Swapping left children with right children of a binary tree at every level." Implementation Recursively TreeNode* invertTree(TreeNode* root) { if(root==NULL) return NULL; swap(root->left,root->right); invertTree(root->left); invertTree(root->right); return root; } Iteratively TreeNode* invertTree(TreeNode* root) { if(root==NULL) return NULL; queue<TreeNode*> q; q.push(root); while(!q.empty()) { TreeNode* c= q.front(); q.pop(); swap(c->left,c->right); if(c->left!=NULL) q.push(c->left); if(c->right!=NULL) q.push(c->right); } return root; } I hope this tutorial hel...