forked from prabhupant/python-ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduplicate_keys.py
55 lines (44 loc) · 1006 Bytes
/
duplicate_keys.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
class Node():
def __init__(self, val):
self.val = val
self.left = None
self.right = None
self.count = 1
def inorder(root):
if not root:
return None
stack = []
while True:
if root:
stack.append(root)
root = root.left
else:
if not stack:
break
root = stack.pop()
print(root.val, "(", root.count, ")")
root = root.right
def insert(root, val):
if not root:
return Node(val)
if val == root.val:
root.count += 1
return root
if val < root.val:
root.left = insert(root.left, val)
else:
root.right = insert(root.right, val)
return root
def delete(root, val):
if not root:
return
if root.val == val:
if root.count > 1:
root.count -= 1
root = Node(5)
insert(root, 4)
insert(root, 6)
insert(root, 4)
insert(root, 8)
insert(root, 10)
inorder(root)