Question: 4 ) Implement a binary search tree to store numbers. Add methods to insert a new number and check for the presence of a number

4) Implement a binary search tree to store numbers. Add methods to insert a new number and check for the presence of a number in the tree.
Example:
bst = BinarySearchTree()
bst.insert(50)
bst.insert(30)
bst.insert(70)
print(bst.contains(30)) # Output: True
print(bst.contains(40)) # Output: False

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!