🎴 Flashcard Mode
Tree Algorithms
Card1 / 15
Mastered0
Review0
QuestionClick to flip
Which of the following is a fundamental property of a binary search tree (BST)?
AnswerClick to flip back
A
All of the above.
💡 Explanation:
A binary search tree is defined by the following properties: each node has a maximum of two children, the left child is always smaller than the parent node, and the right child is always larger than the parent node.