btree-level-order-traversal py3

This commit is contained in:
Sangeeth Sudheer 2022-04-26 00:21:37 +05:30
parent 91cc45db21
commit 6925c6815f
2 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,28 @@
Given the `root` of a binary tree, return _the level order traversal of its nodes' values_. (i.e., from left to right, level by level).
**Example 1:**
![](https://assets.leetcode.com/uploads/2021/02/19/tree1.jpg)
Input: root = [3,9,20,null,null,15,7]
Output: [[3],[9,20],[15,7]]
**Example 2:**
Input: root = [1]
Output: [[1]]
**Example 3:**
Input: root = []
Output: []
**Constraints:**
* The number of nodes in the tree is in the range `[0, 2000]`.
* `-1000 <= Node.val <= 1000`
https://leetcode.com/problems/binary-tree-level-order-traversal/

View File

@ -0,0 +1,49 @@
# 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
from collections import deque
class Solution:
def levelOrder(self, root: Optional[TreeNode]) -> List[List[int]]:
'''
BFS
'''
if root is None: return []
q = deque([root])
results = []
while q:
n = len(q)
level = []
# Idea here is we iterate through the queue, the queue
# will always contain 1, 2, 4, 8 ... elements for each
# level since we'll be appending None .left/.right nodes
# also. This makes it easier to do the computation.
for i in range(n):
curr = q.popleft()
# Could be None, ignore if that's the case
if curr:
level.append(curr.val)
# It's okay to append None values here, the condition
# above will filter it out
q.append(curr.left)
q.append(curr.right)
# Since there's a chance that at the last level of the tree, we
# might be pushing None nodes due to .left/.right being None, we
# might have an empty level. We check and avoid adding the empty
# level in this case.
if level:
results.append(level)
return results