Skip to content

Latest commit

 

History

History

BinarySearchTree

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Binary Search Tree

Operation Description Big O Return Type
insert(value) Adds a value to the BST O(log n) BinarySearchTree
contains(value) Checks if a value is in the BST O(log n) boolean