Which of the following statements hold true for binary trees?
Options
- The left subtree of a node contains only nodes with keys less than the node's key
- The right subtree of a node contains only nodes with keys greater than the node's key.
- Both a and b
- Noth left and right subtree nodes contains only nodes with keys less than the node's key
CORRECT ANSWER : Both a and b
Write your comments