Mark As Completed Discussion

Build your intuition. Click the correct answer from the options.

Which of the following is NOT a property of the Binary Search Tree data structure?

Click the option that best answers the question.

  • The LEFT subtree of a node contains only nodes with keys LESS than the node's key.
  • The LEFT subtree of a node contains only nodes with keys GREATER than the node's key.
  • The RIGHT subtree of a node contains only nodes with keys GREATER than the node's key.
  • Both the LEFT and RIGHT subtrees must also be binary search trees.