Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 384 Bytes

File metadata and controls

12 lines (9 loc) · 384 Bytes

Binary Search Tree - BST

  • Binary Search Tree (BST) is a rooted binary tree data structure with the key of each internal node being greater than all the keys in the respective node's left subtree and less than the ones in its right subtree.

  • Solution

Running

  • Running with an instance included:
    python instance.py