A complete binary tree is a binary tree in which every level, except possibly the last, is completely filled, and all nodes are as far left as possible.
Write a data structure CBTInserter
that is initialized with a complete binary tree and supports the following operations:
CBTInserter(TreeNode root)
initializes the data structure on a given tree with head noderoot
;CBTInserter.insert(int v)
will insert aTreeNode
into the tree with valuenode.val = v
so that the tree remains complete, and returns the value of the parent of the insertedTreeNode
;CBTInserter.get_root()
will return the head node of the tree.
Example 1:
Input: inputs = ["CBTInserter","insert","get_root"], inputs = [[[1]],[2],[]] Output: [null,1,[1,2]]
Example 2:
Input: inputs = ["CBTInserter","insert","insert","get_root"], inputs = [[[1,2,3,4,5,6]],[7],[8],[]] Output: [null,3,4,[1,2,3,4,5,6,7,8]]
Note:
- The initial given tree is complete and contains between
1
and1000
nodes. CBTInserter.insert
is called at most10000
times per test case.- Every value of a given or inserted node is between
0
and5000
.
思路:利用完全二叉树的性质,index的对应关系
# Definition for a binary tree node.
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class CBTInserter(object):
def __init__(self, root):
"""
:type root: TreeNode
"""
a=[None]
q,qq=[root],[]
while q:
while q:
t=q.pop()
a.append(t)
if t.left: qq.append(t.left)
if t.right: qq.append(t.right)
q,qq=qq,q
q=q[::-1]
self.q=q
self.root=root
self.a=a
def insert(self, v):
"""
:type v: int
:rtype: int
"""
n=len(self.a)
idx=n
fo=idx//2
t=TreeNode(v)
self.a.append(t)
if self.a[fo].left: self.a[fo].right=t
else: self.a[fo].left=t
return self.a[fo].val
def get_root(self):
"""
:rtype: TreeNode
"""
return self.root
# Your CBTInserter object will be instantiated and called as such:
# obj = CBTInserter(root)
# param_1 = obj.insert(v)
# param_2 = obj.get_root()