剑指offer——平衡二叉树
Posted Max的日常操作
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer——平衡二叉树相关的知识,希望对你有一定的参考价值。
public class Solution {
public boolean IsBalanced_Solution(TreeNode root) {
if(root == null){
return true;
}
if(Math.abs(getDepth(root.left) - getDepth(root.right)) > 1){
return false;
}
else {
return IsBalanced_Solution(root.left) && IsBalanced_Solution(root.right);
}
}public int getDepth(TreeNode root) {
if(root == null){
return 0;
}int left = getDepth(root.left);
int right = getDepth(root.right);
return Math.max(left,right) + 1;
}
}
public class Solution {
public boolean IsBalanced_Solution(TreeNode root) {
return getDepth(root) != -1;
}
private int getDepth(TreeNode root) {
if (root == null) return 0;
int left = getDepth(root.left);
if (left == -1) return -1;
int right = getDepth(root.right);
if (right == -1) return -1;
return Math.abs(left - right) > 1 ? -1 : 1 + Math.max(left, right);
}
}
以上是关于剑指offer——平衡二叉树的主要内容,如果未能解决你的问题,请参考以下文章