Skip to main content

Right view of a Binary Tree

In this post, we will discuss a method to print the Right view of a binary tree. This is one the most common easy level interview questions. Also, you might get to see interview questions which can be solved with slight variations to this code. The approach we take here is almost very similar to printing the Left view of the Binary Tree

The right view contains all nodes that are last nodes in their levels. Right View of a tree is defined as the nodes that would be visible to us from the right side. To do this we have to simply print the first node encountered while traversing a level from the right. If you have seen my post for the left view of the binary tree then the only change that we make here is to traverse the right child of the current node first and then traverse the left node. Have a look at the below image to get some idea.
Right view of a binary tree
Right View of a Binary Tree


There are 2 solutions to this problem, first is to do a recursive preorder traversal in which we maintain max level we have traversed and then print the node if the max level is less than the max_level variable and update the max_level variable, another simple solution is to do level order traversal and print the first node in every level but instead of doing the standard preorder traversal we just visit the Right child first and then the left child.

Method 1: Using Recursive Preorder traversal
Most of the problems related to trees can be solved with little modifications to the basic preorder traversal code. For this method, we do the following steps.

  1.  We create a variable max_level that denotes the max level traversed and we create a variable level that denotes the current level being traversed.
  2. We check if the level of the current node is greater than the max_level. if yes then we print the current node and update the max_level else we move ahead.
  3. In each recursive call, we increase the current level by one as we travel down the binary tree.
  4. Remember to traverse the right child first and then the left child.

Let's have a look at the code

C++ Program

Sample input and output to check the program




Method 2: Using BFS traversal (using queue)
This is an iterative approach in which we use a queue to store the nodes in the next level and then print the leftmost node in each level.


  1. Create an empty queue and put the head node into it.
  2. Create a max_level variable to denote the current level being traversed, and a variable current_node to denote the current node being processed.
  3. If the level of the current_node is greater than the max_level then do the following steps:
    1. print the value of the current_node.
    2. set max_level to the level of the current node.
  4. Enqueue the right child of the current node and then the left child of the current_node in the queue.
  5. Do the steps 2 to 4 till queue is empty. 


Let's have a look at the code

C++ Program

Sample input and output to check the program

You might also be interested in 

Left View of a Binary Tree

Comments

Popular posts from this blog

Home Page

List of All Programs The Following is the List of all the programs on my Blog Math Programs Square Root of a number using Babylonian Method Finding The Next Smallest Palindrome Finding the Armstrong Numbers Factorial of a number GCD using Euclid's Algorithm Check if a number is Fibonacci Number or not LCM of 2 numbers Trailing Zeros in factorial of a number Sorting Algorithms Bubble Sort Algorithm Selection Sort Algorithm Insertion Sort Algorithm Shell Sort Algorithm Counting Sort Algorithm Linked List Programs Simple Singly Linked List Linked List in C++ Linked List in Python Linked List in Java Doubly Linked List Finding Kth element from the end of Linked List Delete a node from Linked List Delete Kth element from the end of Linked List Rotate Linked List in an Anti-clockwise direction Reversing first K nodes of a Linked List Binary Search Tree Left View of Binary Tree Righ

Hashing with Linear Probing

Hashing is a technique used for storing , searching and removing elements in almost constant time. Hashing is done with help of a hash function that generates index for a given input, then this index can be used to search the elements, store an element, or remove that element from that index. A hash function is a function that is used to map the data elements to their position in the data structure used. For example if we use an array to store the integer elements then the hash function will generate position for each element so that searching, storing and removing operation on the array can be done in constant time that is independent of the number of elements in the array. For better look at the example below. now we face a problem if for 2 numbers same position is generated example consider elements 1 and 14 1 % 13 = 1 14 % 13 = 1 so when we get 1 we store it at the first position, but when we get 14 we see that the position 1 is already taken, this is a case of colli

Infix to Prefix conversion using Stack

This post is about conversion of Infix expression to Prefix conversion. For this conversion we take help of stack data structure, we need to push and pop the operators in and out of the stack. Infix expressions are the expressions that we normally use, eg. 5+6-7; a+b*c etc. Prefix expressions are the expressions in which the 2 operands are preceded by the operator eg. -+56 7 , +a*bc etc. This method is very similar to the method that we used to convert Infix to Postfix but the only difference is that here we need to reverse the input string before conversion and then reverse the final output string before displaying it. NOTE: This changes one thing that is instead of encountering the opening bracket we now first encounter the closing bracket and we make changes accordingly in our code. So, to convert an infix expression to a prefix expression we follow the below steps (we have 2 string, 1st is the input infix expression string 2nd is the output string which is empty initially)