Question d’entretien chez Yahoo

BST traversal

Réponse à la question d'entretien

Utilisateur anonyme

9 avr. 2018

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