You are viewing a single comment's thread. Return to all comments →
JavaScript
if(!root) return; process.stdout.write(`${root.data} `); if(root.left) preOrder(root.left); if(root.right) preOrder(root.right);
Tree: Preorder Traversal
You are viewing a single comment's thread. Return to all comments →
JavaScript