110. Balanced Binary Tree
Description
Given a binary tree, determine if it is height-balanced.
Example 1:
![](https://assets.leetcode.com/uploads/2020/10/06/balance_1.jpg)
1 | Input: root = [3,9,20,null,null,15,7] |
Example 2:
![](https://assets.leetcode.com/uploads/2020/10/06/balance_2.jpg)
1 | Input: root = [1,2,2,3,3,null,null,4,4] |
Example 3:
1 | Input: root = [] |
Constraints:
- The number of nodes in the tree is in the range
[0, 5000]
. -10^4 <= Node.val <= 10^4
Hints/Notes
- 2024/05/11
- binary tree
- 0x3Fâs solution(checked)
Solution
Language: C++
1 | /** |