A Binary Search Tree (BST) is a type of binary tree in which each node has at most two children, and every node left child contains a value less than the node's value, while the right child contains a value greater than the node value.
For extra details on Binary Search Trees, please visit Wikipedia's page on Binary Search Trees.