Leetcode刷题记录——958. 二叉树的完全性检验
程序员文章站
2022-07-15 11:16:48
...
1、遍历,获取每个元素的所在层数
并维护最大层数
2、二次遍历
当节点的所在层为小于最大层-1时
仅当左右孩子都非空 返回左右孩子的结果
当节点所在层为最大层-1时
因为从左向右遍历,当这一层 的第一个节点出现仅左或无孩子时,全局变量记录
对这一层此后的节点,都不允许出现孩子
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def __init__(self):
self.res = {None:-1}
self.maxa = -1
self.quekou = False
def isCompleteTree(self, root: TreeNode) -> bool:
if root == None:
return True
self.func(root,0)
#print(self.res)
print(self.maxa)
return self.func2(root)
def func(self,root,depth):
if root not in self.res:
self.res[root] = depth
self.maxa = max(self.maxa,depth)
self.func(root.left,depth+1)
self.func(root.right,depth+1)
def func2(self,root):
this_depth = self.res[root]
if this_depth == self.maxa:
return True
elif this_depth < self.maxa - 1:
return True if ((root.left != None and root.right != None) and (self.func2(root.left)) and (self.func2(root.right))) else False
elif this_depth == self.maxa - 1:
if self.quekou == True:
return False if (root.right != None or root.left != None) else True
else:
if root.left != None and root.right != None:
return True
elif root.left == None and root.right != None:
return False
else:
self.quekou = True
print(root.val)
return True
推荐阅读
-
LeetCode第958题 二叉树的完全性检验
-
958. 二叉树的完全性检验
-
Leetcode刷题记录——958. 二叉树的完全性检验
-
leetcode 第 958 题:二叉树的完全性检验(C++)
-
leetcode 958 二叉树的完全性检验(超简洁写法)
-
leetcode 958. 二叉树的完全性检验(输出是否是完全二叉树 dfs/bfs每次假如队列的时候判断 值是不是sz)
-
【Leetcode刷题篇】leetcode236 二叉树的最近公共祖先
-
LeetCode刷题记录——第122题(买卖股票的最佳时机二)
-
LeetCode刷题(117)~二叉树的中序遍历【递归|迭代】
-
【Leetcode刷题篇】leetcode543 二叉树的直径