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.
这道题以前做过。这次做没有好好思考。
核心是比较深度,那么需要先计算深度,这个时候需要祭上depth子函数。之后,递归,妥妥地。
注意两点,Math.abs和Math.max的使用。
好了,上代码,
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public boolean isBalanced(TreeNode root) {
if(root == null){
return true;
}
if(Math.abs(depth(root.left) - depth(root.right)) > 1) {
return false;
}
return isBalanced(root.left) && isBalanced(root.right);
}
private int depth(TreeNode root) {
if(root == null){
return 0;
}
return 1 + Math.max(depth(root.left), depth(root.right));
}
}
没有评论:
发表评论