A Binary Search Tree, also called a BST, is a data structure that stores values in nodes. Each node can have a left child and a right child. The left side contains smaller values, and the right side contains larger values. This makes searching faster than checking every value one by one.
Learn more about Binary Search Trees here: Binary Search Tree Article