We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22bd6ff commit 06d7361Copy full SHA for 06d7361
data_structures/binary_tree/binary_search_tree.py
@@ -40,6 +40,7 @@ class BinarySearchTree:
40
def __init__(self):
41
self.root = None
42
43
+ # Insert a new node in Binary Search Tree with value label
44
def insert(self, label):
45
# Create a new Node
46
new_node = Node(label, None)
0 commit comments