You are viewing a single comment's thread. Return to all comments →
an elegant way to write it is by using recursion:
void preOrder(Node *root) { if(root == NULL) return; std::cout << root->data << " "; preOrder(root->left); preOrder(root->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 →
C++ O(n)
an elegant way to write it is by using recursion: