Binary Tree vs BST
Binary Tree: Structural constraint only.
BST: Structural constraint plus value ordering.
Binary Tree inorder traversal is not necessarily sorted.
BST inorder traversal is sorted under the standard ordering rule.
BST supports efficient ordered searching when balanced.