Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 194 Bytes

README.md

File metadata and controls

10 lines (10 loc) · 194 Bytes

Binary-Search-Tree

Python code for the operations in BST. Different operations performed are:

  1. insert()
  2. find_successor()
  3. delete()
  4. inorder()
  5. preorder()
  6. postorder()
  7. search()