Python | Leetcode Python题解之第110题平衡二叉树

题目:

题解:

python 复制代码
class Solution:
    def isBalanced(self, root: TreeNode) -> bool:
        def height(root: TreeNode) -> int:
            if not root:
                return 0
            leftHeight = height(root.left)
            rightHeight = height(root.right)
            if leftHeight == -1 or rightHeight == -1 or abs(leftHeight - rightHeight) > 1:
                return -1
            else:
                return max(leftHeight, rightHeight) + 1

        return height(root) >= 0
相关推荐
多彩电脑1 小时前
Python的tkinter如何把日志弄进文本框(Text)
python·用户界面
小馒头学python1 小时前
【Python爬虫五十个小案例】爬取豆瓣电影Top250
开发语言·爬虫·python
且听风吟ayan6 小时前
leetcode day13 贪心 45+55
leetcode·c#
black0moonlight7 小时前
ISAAC Gym 7. 使用箭头进行数据可视化
开发语言·python
sjsjs117 小时前
【数据结构-表达式解析】【hard】力扣224. 基本计算器
数据结构·算法·leetcode
程序员黄同学7 小时前
Python 中如何创建多行字符串?
前端·python
禊月初三7 小时前
LeetCode 4.寻找两个中序数组的中位数
c++·算法·leetcode
一点一木8 小时前
AI与数据集:从零基础到全面应用的深度解析(超详细教程)
人工智能·python·tensorflow
戊子仲秋8 小时前
【LeetCode】每日一题 2024_11_23 矩阵中的蛇(哈希、计数)
leetcode·矩阵·哈希算法
A.sir啊8 小时前
Python知识点精汇:集合篇精解!
python·pycharm