In what order are nodes accessed using Pre-order Traversal?
Root-Left-Right
In what order are nodes accessed using In-order Traversal?
Left-Root-Right
In what order are nodes accessed using Post-order Traversal?
Left-Right-Root
What are the key steps for searching in a BST?
What are the key steps in adding a node to a BST?
What are the advantages of Binary Search Tree?
What are the disadvantages of Binary Search Tree?
why do we need to recreate the binary search tree periodically