Branch Master is a game designed to teach Binary Search Trees, a data structure where left children are smaller and right children are larger than their parent. It aims to make learning this fundamental computer science concept engaging through interactive play.

Binary Search Tree
A Binary Search Tree is a data structure used in computer science to organize and store data in a sorted manner. Each node in a Binary Search Tree has just two children: a left child and a right child, with the left child storing values less than the parent node and the right child carrying values larger than the parent node.












