You are viewing a single comment's thread. Return to all comments →
Java 8 solution :- Recursive Approach
public static void preOrder(Node root) { if(root == null){ return; } System.out.print(root.data+" "); preOrder(root.left); preOrder(root.right); }
Tree: Preorder Traversal
You are viewing a single comment's thread. Return to all comments →
Java 8 solution :- Recursive Approach