Pergunta de entrevista da empresa Yahoo

BST traversal

Resposta da entrevista

Sigiloso

9 de abr. de 2018

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