leetcood学习笔记-104-二叉树的最大深度

题目描述:

leetcood学习笔记-104-二叉树的最大深度

第一次提交:

class Solution(object):
    def maxDepth(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
        if not root:
            return 0
        elif root.left==None and root.right==None:
            return 1
        elif root.left==None and root.right!=None:
            return 1+self.maxDepth(root.right)
        elif root.left!=None and root.right==None:
            return 1+self.maxDepth(root.left)
        else:
            return 1+max(self.maxDepth(root.left),self.maxDepth(root.right))

优化后:

class Solution(object):
    def maxDepth(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
        if root!=None:
            return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1
        else:
            return 0

 

上一篇:104.Maximum Depth of Binary Tree


下一篇:递归的三部解题曲 关联leetcode 104. 二叉树最大深度练习