A tree where each tree node has two sub-nodes (of the same node type). One or both of the sub-nodes may be null. Each node is itself a tree (sub-tree).
A BST is a ordered (sorted) binary tree. Each binary node has a left node (sub-tree) with smaller values, and right node (sub-tree) with equal or larger values.
When talking about how a BST sorts and we say a value "A" is less than a value "B", this means that "A" sorts before "B".
A BST is comprised of BST nodes. Each BST node has a left BST node and right BST node.
The sort order is: left sub-tree, target node, right sub-tree.
Any node in the tree is a sub-tree.