Python刷leetcode 103. 二叉树的锯齿形层次遍历
程序员文章站
2022-05-21 12:08:53
...
给定一个二叉树,返回其节点值的锯齿形层次遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。
例如:
给定二叉树 [3,9,20,null,null,15,7]
,
3 / \ 9 20 / \ 15 7
返回锯齿形层次遍历如下:
[ [3], [20,9], [15,7] ]
思路:和上一篇文章102的思路基本相同,只是在res中加入templist时加了一步判断flag是否为负的步骤,如果为负,表示是偶数次遍历应该从右往左,将templist更新为逆序
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def zigzagLevelOrder(self, root):
"""
:type root: TreeNode
:rtype: List[List[int]]
"""
if not root:
return []
queue = [root]
res = []
flag = 1
while queue:
templist = []
length = len(queue)
for i in range(length):
temp = queue.pop(0)
templist.append(temp.val)
if temp.left:
queue.append(temp.left)
if temp.right:
queue.append(temp.right)
if flag == -1:
templist=templist[::-1]
res.append(templist)
flag *= -1
return res
下一篇: C 小金问呀问不会问题 SDUT