Skip to main content

Tree Traversals Made Easy!

In this blog, I'm going to discuss one of the easiest ways by which you can traverse a binary tree.

Structure Of Tree

struct node
{
    int data;
    node *right,*left;
    node(int data)
    {
        this->data=data;
        left=right=NULL;
    }
};

Tree traversal 

Pre-order :  Root -> Left -> Right 

void preorder(node* root)
{
    if(root==NULL) // base condition
        return ;
        cout<data<<" "; // print root
    preorder(root->left); // go to left child
    preorder(root->right); // go to right child
}

In-order : Left -> Root -> Right

void inorder(node* root)
{
    if(root==NULL)
        return ;
    inorder(root->left);
    cout<<root->data<<" ";
    inorder(root->right);
}

Post-order : Left -> Right -> Root 

void postorder(node* root)
{
    if(root==NULL)
        return ;
    postorder(root->left);
        postorder(root->right);
        cout<<root->data<<" ";
}

Sample Main Function
/*
int main() 
node* root = new node(12); 
root->left = new node(10); 
root->right = new node(30); 
root->right->left = new node(25); 
root->right->right = new node(40); 
inorder(root);
        preorder(root);
        postorder(root); 
return 0; 
*/

The above-mentioned approaches are quite similar to each other so if you're able to understand and implement one of them, then others will automatically become easy to understand and implement.
So for 3 different traversals, you don't need to understand 3 different approaches instead you can understand one of the above-mentioned algorithms and the rest will be similar with few minor changes.

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...