Binary Tree Postorder Traversal in Java
Postorder traversal is one of the way to traverse binary Tree. In postorder traversal Left subtree is read first then Right subtree and then Root Node.
Binary Tree Postorder traversal algorithm is a very popular interview question so better to understand it properly.
There are 2 ways of doing Postorder traversal,
- Recursive Postorder traversal of Binary tree.
- Iterative Postorder traversal of Binary tree.
Postorder Traversal
There are multiple ways to traversing a Binary Tree like, Preorder traversal, Postorder traversal, Inorder traversal, Spiral order traversal, Vertical order traversal, Level order traversal etc.
In this post, we will focus on Postorder Traversal of Binary Tree
Algorithm:
Postorder traversal:To traverse a binary tree in Postorder,
- Traverse the Left subtree.
- Traverse the Right subtree.
- Visit the root node and print data of that node.
Postorder traversal of binary tree |
Let's see Postorder traversal step by step.
Postorder Traversals Java Program.
PostorderBinaryTreeTraversal.java
package javabypatel.tree; import java.util.LinkedList; import java.util.Queue; public class PostorderBinaryTreeTraversal { private Node rootNode; public static void main(String[] args) { new BinaryTreeTraversal(); } public PostorderBinaryTreeTraversal(){ addNode(rootNode, 45); addNode(rootNode, 25); addNode(rootNode, 75); addNode(rootNode, 15); addNode(rootNode, 35); System.out.println("\nPost Order Traversal :"); printTreePostOrder(rootNode); } //Postorder Printing. private void printTreePostOrder(Node rootNode){ if(rootNode==null) return; printTreePostOrder(rootNode.getLeft()); printTreePostOrder(rootNode.getRight()); System.out.print(rootNode.getData() + " "); } private void addNode(Node rootNode, int data){ if(rootNode==null){ Node temp1 = new Node(data); this.rootNode=temp1; }else{ addNodeInProperPlace(rootNode, data); } } private void addNode(Node rootNode, int data){ if(rootNode==null){ Node temp1 = new Node(data); this.rootNode=temp1; }else{ addNodeInProperPlace(rootNode, data); } } private void addNodeInProperPlace(Node rootNode, int data){ if(data>rootNode.getData()){ if(rootNode.getRight()!=null){ addNode(rootNode.getRight(), data); }else{ Node temp1 = new Node(data); rootNode.setRight(temp1); } }else if(data<rootNode.getData()){ if(rootNode.getLeft()!=null){ addNode(rootNode.getLeft(), data); }else{ Node temp1 = new Node(data); rootNode.setLeft(temp1); } } } }Node.java
package javabypatel.tree; public class Node { private int data; private Node left; private Node right; public Node(int data) { this.data=data; } public int getData() { return data; } public void setData(int data) { this.data = data; } public Node getLeft() { return left; } public void setLeft(Node left) { this.left = left; } public Node getRight() { return right; } public void setRight(Node right) { this.right = right; } }
You may also like to see
Preorder Traversal of Binary Tree in Java
Level order traversal of binary tree in Java
Inorder traversal of binary tree in Java
Zig Zag Traversal of Binary Tree.
Boundary Traversal of binary tree.
Print Nodes in Top View of Binary Tree
Print Nodes in Bottom View of Binary Tree.
Print a Binary Tree in Vertical Order
Enjoy !!!!
If you find any issue in post or face any error while implementing, Please comment.
Post a Comment