Bst Data structure for storing sorted data. Binary Tree Binary Search Structure A Binary Search Tree (BST) is a data structure used in computer science to store and organize sorted data efficiently. Each node contains a key, with the left subtree containing keys less than the node's key and the subtree containing keys greater than it. Built by Tim Jones