博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
111.二叉树的最小深度
阅读量:5270 次
发布时间:2019-06-14

本文共 580 字,大约阅读时间需要 1 分钟。

# Definition for a binary tree node.# class TreeNode:#     def __init__(self, x):#         self.val = x#         self.left = None#         self.right = Noneclass Solution:    def minDepth(self, root: TreeNode) -> int:        if root is None:            return 0        if root.left and root.right:            return min(self.minDepth(root.left), self.minDepth(root.right)) + 1        #   3        #  / \        # 9        # 返回的应该是2,而不是1        else:            return max(self.minDepth(root.left), self.minDepth(root.right)) + 1

 

转载于:https://www.cnblogs.com/WJZheng/p/11454879.html

你可能感兴趣的文章
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>
NPOI处理Word文本中上下角标
查看>>
Android笔记 Handler
查看>>
如何阅读大型前端开源项目的源码(转)
查看>>
java.util.Arrays类详解
查看>>
idea搭建tocmat
查看>>
NYOJ-626-intersection set(二分查找)
查看>>