You are viewing a single comment's thread. Return to all comments →
JAVA:
public static void preOrder(Node node) { if (node != null) { System.out.print(node.data + " "); preOrder(node.left); preOrder(node.right); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Tree: Preorder Traversal
You are viewing a single comment's thread. Return to all comments →
JAVA: