Skip to content

Binary Search Tree (BST)

  • A tree structure to store numbers in a sorted fashion so that searching on it is easy
  • The node on the left (and all its subnodes) have a value lower than the parent node. Equally, the node (and subnodes) on the right have a higher value
  • https://visualgo.net/en/bst