Select the correct name for: a binary tree in which each node's left subtree contains smaller values and right subtree contains larger values.
- A. Queue
- B. Array (contiguous memory)
- C. Binary search tree ✓
- D. Graph
Correct answer
C. Binary search tree
Explanation
Binary search tree refers to a binary tree in which each node's left subtree contains smaller values and right subtree contains larger values.