Binary Search Tree
1. The number of edges from the root to a particular node is called the ________ of that node.
2. The number of edges from a node to its deepest leaf is called the ________ of that node.
3. What is a full binary tree?
4. What is a complete binary tree?
5. Which of the following is not a typical advantage or application of using tree structures?
6. In a binary search tree containing distinct keys, where is a key smaller than the current node's key inserted?
7. Which traversal of a binary search tree can be used to obtain its keys in sorted order?
8. Suppose a BST contains 40 at its root. During a search for key 25, which subtree should be explored after comparing 25 with 40?
9. If the same distinct keys are inserted into a binary search tree in two different orders, which result is guaranteed to be the same?