/*
Reverse Level Order Traversal
*/
#include <bits/stdc++.h>
using namespace std;
/* A binary tree node has data,
pointer to left and right child */
class node
{
public:
int data;
node* left;
node* right;
};
/*Function prototypes*/
void printGivenLevel(node* root, int level);
int height(node* node);
node* newNode(int data);
/* Function to print REVERSE
level order traversal a tree*/
void reverseLevelOrder(node* root)
{
int h = height(root);
int i;
for (i=h; i>=1; i--) //THE ONLY LINE DIFFERENT FROM NORMAL LEVEL ORDER
printGivenLevel(root, i);
}
/* Print nodes at a given level */
void printGivenLevel(node* root, int level)
{
if (root == NULL)
return;
if (level == 1)
cout << root->data << " ";
else if (level > 1)
{
printGivenLevel(root->left, level - 1);
printGivenLevel(root->right, level - 1);
}
}
/* Compute the "height" of a tree -- the number of
nodes along the longest path from the root node
down to the farthest leaf node.*/
int height(node* node)
{
if (node == NULL)
return 0;
else
{
/* compute the height of each subtree */
int lheight = height(node->left);
int rheight = height(node->right);
/* use the larger one */
if (lheight > rheight)
return(lheight + 1);
else return(rheight + 1);
}
}
/* Helper function that allocates a new node with the
given data and NULL left and right pointers. */
node* newNode(int data)
{
node* Node = new node();
Node->data = data;
Node->left = NULL;
Node->right = NULL;
return(Node);
}
/* Driver code*/
int main()
{
node *root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->left->left = newNode(4);
root->left->right = newNode(5);
cout << "Level Order traversal of binary tree is
";
reverseLevelOrder(root);
return 0;
}
Code Example |
---|
Cpp :: how to reverse a string in c++ |
Cpp :: untitled goose game |
Cpp :: c++ average |
Cpp :: how to declare a 2D vector in c++ of size m*n with value 0 |
Cpp :: min heap priority queue c++ |
Cpp :: c++ basic snippet |
Cpp :: print vector c++ |
Cpp :: unique_ptr syntax |
Cpp :: image shapes in opencv c++ |
Cpp :: What is the "--" operator in C/C++? |
Cpp :: Find minimum maximum element CPP |
Cpp :: a square plus b square plus c square |
Cpp :: c++ capture screen as pixel array |
Cpp :: how to initialize vector |
Cpp :: pure virtual function in c++ |
Cpp :: convert kelvin to Fahrenheit |
Cpp :: c++ output current timestamp |
Cpp :: c++ header boilerplate |
Cpp :: cpp ifdef |
Cpp :: array of Methods c++ |
Cpp :: cpp template |
Cpp :: enum c++ |
Cpp :: c++ array pointer |
Cpp :: linked list cycle c++ |
Cpp :: c++ fonksion pointer |
Cpp :: one dimensiol array to two dimen c++ |
Cpp :: c++ count vector elements |
Cpp :: put function in cpp |
Cpp :: nullptr c++ |
Cpp :: C++ detaching threads |