Question: What is the main difference between a binary tree and a binary search tree?
Options:
Correct Answer: Binary search trees have a specific ordering property, binary trees do not
Solution:
A binary search tree has the property that for any node, all values in the left subtree are less and all values in the right subtree are greater.