Search
 
SCRIPT & CODE EXAMPLE
 

CPP

reverse order binary tree in c++

/* 
	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;

}
Comment

PREVIOUS NEXT
Code Example
Cpp :: sina + sinb formula 
Cpp :: calculate factorial 
Cpp :: c++ pass array to a function 
Cpp :: concatenate two vectors c++ 
Cpp :: iterate through map c++ 
Cpp :: inline in class in C++ 
Cpp :: reverse function in cpp array 
Cpp :: how to compile opencv c++ in ubuntu 
Cpp :: getline(cin string) not working 
Cpp :: Program To Calculate Number Power Using Recursion In C++. The power number should always be positive integer. 
Cpp :: sort vector of strings 
Cpp :: 2d vector in cpp 
Cpp :: c preprocessor operations 
Cpp :: best websites for programming 
Cpp :: creare array con c++ 
Cpp :: c plus plus 
Cpp :: C++ Infinite while loop 
Cpp :: print hello world in c++ 
Cpp :: c++ #include 
Cpp :: doubly linked list code in c++ 
Cpp :: c++ remove chars from string 
Cpp :: find function in c++ 
Cpp :: c++ read matttrix from text file 
Cpp :: take a function argument 
Cpp :: c++ loop trhought object 
Cpp :: hello world cc++ 
Cpp :: hierarchical inheritance in c++ employee 
Cpp :: creating node in c++ 
Cpp :: how to increase array memory in c++ 
Cpp :: C++ rename function 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =