Domanda di colloquio di Yahoo

BST traversal

Risposta di colloquio

Anonimo

9 apr 2018

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