-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path199_Binary_Tree_Right_Side_View.py
More file actions
57 lines (45 loc) · 1.52 KB
/
199_Binary_Tree_Right_Side_View.py
File metadata and controls
57 lines (45 loc) · 1.52 KB
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
56
57
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution(object):
# def rightSideView(self, root):
# """
# :type root: TreeNode
# :rtype: List[int]
# """
# if root is None:
# return []
# right_side = []
# def dfs(node, level):
# if level == len(right_side):
# right_side.append(node.val)
# for child in (node.right, node.left):
# if child:
# dfs(child, level + 1)
# dfs(root, 0)
# return right_side
# BFS
# Time: O(N), Space: (N)
def rightSideView(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
if root is None:
return []
visibleValues = []
queue = deque([root])
while queue:
levelLength = len(queue)
for i in range(levelLength):
currentNode = queue.popleft()
if i == levelLength - 1:
visibleValues.append(currentNode.value)
if currentNode.left:
queue.append(currentNode.left)
if currentNode.right:
queue.append(currentNode.right)
return visibleValues