Yahoo Interview Question

BST traversal

Interview Answer

Anonymous

Apr 9, 2018

Binary Search Traversal has three types, preorder (root->left subtree->right subtree). Inorder (left subtree->root->right subtree), and Postorder (left->right->root)