Created
October 7, 2018 22:33
-
-
Save xnorcode/007de358ab6094e241eda9daf791fe4b to your computer and use it in GitHub Desktop.
Depth-First Search Post-Order traversal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
// DFS post-order print of all values in BST | |
static void printPostOrder(Node current){ | |
// print left child | |
if(current.left != null) printInOrder(current.left); | |
// print right child | |
if(current.right != null) printInOrder(current.right); | |
// print current node data | |
System.out.println(current.data); | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment