码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode-python-二叉树的最小深度

时间:2021-06-28 18:47:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgba   code   color   one   roo   solution   int   nod   pytho   

递归找最小

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def minDepth(self, root: TreeNode) -> int:
        if not root:
            return 0 
        if root.left and root.right:
            return 1 + min(self.minDepth(root.left),self.minDepth(root.right))
        elif root.left:
            return 1 + self.minDepth(root.left)
        elif root.right:
            return 1 + self.minDepth(root.right)
        else:
            return 1
        
        

 

leetcode-python-二叉树的最小深度

标签:rgba   code   color   one   roo   solution   int   nod   pytho   

原文地址:https://www.cnblogs.com/cbachen/p/14934552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!