leetcode minimum depth(binary tree)

__author__ = 'winterhouse'

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

class Solution:
    def minDepth(self, root):
        return treeDepth(root, 0)
def treeDepth(tree,depth):
    if tree == None:
        return 0
    if tree.left == None and tree.right == None:
         return 1
    leftDepth = rightDepth = 0
    if tree.left != None:
        leftDepth=treeDepth(tree.left,depth)
    if tree.right != None:
         rightDepth=treeDepth(tree.right,depth)
    if leftDepth > 0 and rightDepth > 0:
        return min(leftDepth, rightDepth) + 1
    elif leftDepth > 0:
        return leftDepth + 1
    else:
        return rightDepth + 1
二叉树最浅深度,需要注意的是深度的定义是根节点到叶子节点,首先要确定终点是叶子节点,然后同样用递归和分治处理问题。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值