-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path107.binary-tree-level-order-traversal-ii.py
54 lines (48 loc) · 1.38 KB
/
107.binary-tree-level-order-traversal-ii.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
#
# @lc app=leetcode id=107 lang=python3
#
# [107] Binary Tree Level Order Traversal II
#
# @lc code=start
# TAGS: Tree, Breath First Search
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
"""
Time and Space: O(N), O(N)
"""
# how to do it wihout reversed(ans)
def levelOrderBottom(self, root: TreeNode) -> List[List[int]]:
ans = []
q = [(root, 0)]
depth = 0
for node, depth in q:
if node:
if depth < len(ans):
ans[ - depth - 1].append(node.val)
else:
ans.insert(0, [node.val])
depth += 1
q.append((node.left, depth))
q.append((node.right, depth))
return ans
# 40 ms, 82%
def levelOrderBottom1(self, root: TreeNode) -> List[List[int]]:
ans = []
q = [(root, 0)]
depth = 0
for node, depth in q:
if node:
if depth < len(ans):
ans[depth].append(node.val)
else:
ans.append([node.val])
depth += 1
q.append((node.left, depth))
q.append((node.right, depth))
return reversed(ans)
# @lc code=end