剑指 Offer 55 - II. 平衡二叉树
输入一棵二叉树的根节点,判断该树是不是平衡二叉树。如果某二叉树中任意节点的左右子树的深度相差不超过1,那么它就是一棵平衡二叉树。
示例 1:
给定二叉树 [3,9,20,null,null,15,7]
3
/ \
9 20
/ \
15 7
返回 true 。
示例 2:
给定二叉树 [1,2,2,3,3,null,null,4,4]
1
/ \
2 2
/ \
3 3
/ \
4 4
返回 false 。
题解
树的题做的少,所以也是看评论的,留此做记录
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public boolean isBalanced(TreeNode root) {
if(root==null)return true;
//判断左子树和右子树是否平衡,左右子树平衡才能往下
if(!isBalanced(root.left) || !isBalanced(root.right))return false;
//判断树高
if(Math.abs(testDepth(root.right)-testDepth(root.left))>1) return false;
return true;
}
//树高遍历
public int testDepth(TreeNode root){
return root==null ? 0 : Math.max(testDepth(root.left),testDepth(root.right))+1;
}
}