topic110

package
v0.0.0-...-b071cee Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2023 License: GPL-3.0 Imports: 1 Imported by: 0

README

110.平衡二叉树

1. 题目描述

给定一个二叉树,判断它是否是高度平衡的二叉树。

本题中,一棵高度平衡二叉树定义为:

一个二叉树 *每个节点 * 的左右两个子树的高度差的绝对值不超过 1 。

 

示例 1:


输入:root = [3,9,20,null,null,15,7]
输出:true

示例 2:


输入:root = [1,2,2,3,3,null,null,4,4]
输出:false

示例 3:


输入:root = []
输出:true

 

提示:

  • 树中的节点数在范围 [0, 5000]
  • -10^4 <= Node.val <= 10^4

标签 深度优先搜索 二叉树

2. 解题

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL