Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 217 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 217 Bytes

Binary Search Tree

Supported Operations

Queries:

  • predecessor(key)
  • successor(key)
  • find(key)
  • inorder()
  • min()
  • max()

Updates:

  • insert(key)
  • delete(key)