Which images show a binary search tree?
a)
b)
c)
d)
Tip: Remember, a Binary Search Tree (BST) follows these three key rules:
- Left subtree values Current Node value
- Right subtree values Current Node value
- Subtrees are also BSTs.