Balanced Binary Tree
可利用修改過後的maxdepth程式來達到我們要的目的 ,因maxdepth可幫我們算出高度, 因此我們只要去比較高度是否差一即可,程式如下:
public class Solution {
public boolean isBalanced(TreeNode root) {
if (root == null) {
return true;
}
return maxDepth(root) != -1;
}
public int maxDepth(TreeNode root) {
if (root == null) {
return 0;
}
int left = maxDepth(root.left);
int right = maxDepth(root.right);
if (left == -1 || right == -1 || Math.abs(left - right) > 1) {
return -1;
}
return Math.max(left, right) + 1;
}
}
時間複雜度:O(n)
public boolean isBalanced(TreeNode root) {
return maxDepth(root) != -1;
}
public int maxDepth(TreeNode root) {
if( root == null ) {
return 0;
}
int left = maxDepth(root.left);
int right = maxDepth(root.right);
if( left == -1 || right == -1 || Math.abs(left-right) > 1 ) {
return -1;
}
return Math.max(left, right) + 1;
}