题解 | #二叉树的深度#
二叉树的深度
https://www.nowcoder.com/practice/435fb86331474282a3499955f0a41e8b
# class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param pRoot TreeNode类 # @return int整型 # 二叉树的最大的深度等于其左右字树种的最大的深度+1 #这个规律对任何节点都适用,任何的根节点 class Solution: def TreeDepth(self , pRoot: TreeNode) -> int: # write code here if pRoot is None: return 0 else: pass return max(self.TreeDepth(pRoot.left),self.TreeDepth(pRoot.right))+1