Data Structures Multiple Choice Questions and Answers on Binary Search Tree
https://www.computersprofessor.com/2017/10/data-structures-multiple-choice_26.html
1. Which of the following is false about a binary search tree?
a) The left child is always lesser than its parent
b) The right child is always greater than its parent
c) The left and right sub-trees should also be binary search trees
d) None of the mentioned
Answer: d
Explanation: All the options hold good for a binary search tree and can be considered as a definition for a BST.
2. How to search for a key in a binary search tree?
a)
public Tree search(Tree root, int key) { if( root == null || root.key == key ) { return root; } if( root.key < key ) { return search(root.right,key); } else return search(root.left,key); }
b)
public Tree search(Tree root, int key) { if( root == null || root.key == key ) { return root; } if( root.key < key ) { return search(root.left,key); } else return search(root.right,key); }
c)
public Tree search(Tree root, int key) { if( root == null) { return root; } if( root.key < key ) { return search(root.right,key); } else return search(root.left,key); }
d) None of the mentioned
Answer: a
Explanation: As we know that the left child is lesser than the parent, if the root’s key is greater than the given key, we look only into the left sub-tree, similarly for right sub-tree.
3. What is the speciality about the inorder traversal of a binary search tree?
a) It traverses in a non increasing order
b) It traverses in an increasing order
c) It traverses in a random fashion
d) None of the mentioned
Answer: b
Explanation: As a binary search tree consists of elements lesser than the node to the left and the ones greater than the node to the right, an inorder traversal will give the elements in an increasing order.
4. What does the following piece of code do?
public void func(Tree root) { func(root.left()); func(root.right()); System.out.println(root.data()); }
a) Preorder traversal
b) Inorder traversal
c) Postorder traversal
d) Level order traversal
b) Inorder traversal
c) Postorder traversal
d) Level order traversal
Answer: c
Explanation: In a postorder traversal, first the left child is visited, then the right child and finally the parent.
5. What does the following piece of code do?
public void func(Tree root) { System.out.println(root.data()); func(root.left()); func(root.right()); }
a) Preorder traversal
b) Inorder traversal
c) Postorder traversal
d) Level order traversal
b) Inorder traversal
c) Postorder traversal
d) Level order traversal
Answer: a
Explanation: In a preorder traversal, first the parent is visited, then the left child and finally the right child.
6. How will you find the minimum element in a binary search tree?
a)
public void min(Tree root) { while(root.left() != null) { root = root.left(); } System.out.println(root.data()); }
b)
public void min(Tree root) { while(root != null) { root = root.left(); } System.out.println(root.data()); }
c)
public void min(Tree root) { while(root.right() != null) { root = root.right(); } System.out.println(root.data()); }
d)
public void min(Tree root) { while(root != null) { root = root.right(); } System.out.println(root.data()); }
Answer: a
Explanation: Since all the elements lesser than a given node will be towards the left, iterating to the leftmost leaf of the root will give the minimum element in a binary search tree.
7. How will you find the maximum element in a binary search tree?
a)
public void max(Tree root) { while(root.left() != null) { root = root.left(); } System.out.println(root.data()); }
b)
public void max(Tree root) { while(root != null) { root = root.left(); } System.out.println(root.data()); }
c)
public void max(Tree root) { while(root.right() != null) { root = root.right(); } System.out.println(root.data()); }
d)
public void max(Tree root) { while(root != null) { root = root.right(); } System.out.println(root.data()); }
Answer: c
Explanation: Since all the elements greater than a given node are towards the right, iterating through the tree to the rightmost leaf of the root will give the maximum element in a binary search tree.
8. What are the worst case and average case complexities of a binary search tree?
a) O(n), O(n)
b) O(logn), O(logn)
c) O(logn), O(n)
d) O(n), O(logn)
Answer: d
Explanation: Worst case arises when the tree is skewed(either to the left or right) in which case you have to process all the nodes of the tree giving O(n) complexity, otherwise O(logn) as you process only the left half or the right half of the tree.
9. Given that 2 elements are present in the tree, write a function to find the LCA(Least Common Ancestor) of the 2 elements.
a)
public void lca(Tree root,int n1, int n2) { while (root != NULL) { if (root.data() > n1 && root.data() > n2) root = root.right(); else if (root.data() < n1 && root.data() < n2) root = root.left(); else break; } System.out.println(root.data()); }
b)
public void lca(Tree root,int n1, int n2) { while (root != NULL) { if (root.data() > n1 && root.data() < n2) root = root.left(); else if (root.data() < n1 && root.data() > n2) root = root.right(); else break; } System.out.println(root.data()); }
c)
public void lca(Tree root,int n1, int n2) { while (root != NULL) { if (root.data() > n1 && root.data() > n2) root = root.left(); else if (root.data() < n1 && root.data() < n2) root = root.right(); else break; } System.out.println(root.data()); }
d) None of the mentioned
Answer: c
Explanation: The property of a binary search tree is that the lesser elements are to the left and greater elements are to the right, we use this property here and iterate through the tree such that we reach a point where the 2 elements are on 2 different sides of the node, this becomes the least common ancestor of the 2 given elements.
10. What are the conditions for an optimal binary search tree and what is its advantage?
a) The tree should not be modified and you should know how often the keys are accessed, it improves the lookup cost
b) You should know the frequency of access of the keys, improves the lookup time
c) The tree can be modified and you should know the number of elements in the tree before hand, it improves the deletion time
d) None of the mentioned
Answer: a
Explanation: By definition.