Skip to content
Code More Create
Main Navigation
📂 刷题技巧
📂 剑指offer系列
📂 字节校园66题
📂 模拟笔试
📂 算法基础
✏️ Java常用函数集
github
Appearance
github
Menu
Return to top
On this page
Table of Contents for current page
题目
代码
题目
#
给定一个二叉树,判断它是否是高度平衡的二叉树。
本题中,一棵高度平衡二叉树定义为:
一个二叉树每个节点的左右两个子树的高度差的绝对值不超过 1 。
代码
#
重置
执行