104. 二叉树的最大深度

104. 二叉树的最大深度

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def maxDepth(self, root: TreeNode) -> int:
        if root == None:
            return 0
        if root.left == None and root.right == None:
            return 1
        return max(self.maxDepth(root.left),self.maxDepth(root.right))+1

 

上一篇:《剑指Offer(第二版)》面试题55 - II. 平衡二叉树


下一篇:php 获取命令行参数