Description
Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as:
a binary tree in which the depth of the two subtrees of every node never differ by more than 1.
Example 1:
Given the following tree [3,9,20,null,null,15,7]
:
1 | 3 |
Return true.
Example 2:
Given the following tree [1,2,2,3,3,null,null,4,4]
:
1 | 1 |
Return false.
解法
递归地求解树的高度,同时如果发现了左右子树高度差大于1的情况,直接返回高度为-1代表不平衡,节省计算时间。
具体代码如下:
1 | class Solution { |