2min,根的深度=左右子树最大深度+1
class Solution:
def TreeDepth(self, pRoot):
if not pRoot:return 0
return max(self.TreeDepth(pRoot.left),self.TreeDepth(pRoot.right))+1
拓展:判断是否是平衡二叉树
1.左右子树深度相差小于等于1
2.后序遍历的同时,既判断子树是否平衡,也返回左右子树的深度。通过引用,out reference。
网友评论