-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm919.py
51 lines (40 loc) · 1.3 KB
/
m919.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
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class CBTInserter:
def __init__(self, root: Optional[TreeNode]):
self.root = root
def getNodeCount(curr: Optional[TreeNode]) :
if not curr :
return
self.size += 1
getNodeCount(curr.left)
getNodeCount(curr.right)
self.size = 0
getNodeCount(root)
def insert(self, val: int) -> int:
self.size += 1
lvl = int(log(self.size, 2))
indx = self.size - 2 ** lvl
path = bin(indx)
path = (lvl - len(path) + 2) * '0' + path
curr = self.root
for direction in path[2:-1] :
if direction == '1' :
curr = curr.right
else :
curr = curr.left
if path[-1] == '1' :
curr.right = TreeNode(val=val)
else :
curr.left = TreeNode(val=val)
return curr.val
def get_root(self) -> Optional[TreeNode]:
return self.root
# Your CBTInserter object will be instantiated and called as such:
# obj = CBTInserter(root)
# param_1 = obj.insert(val)
# param_2 = obj.get_root()