码迷,mamicode.com
首页 > 编程语言 > 详细

java 递归实现平衡二叉树

时间:2017-05-28 12:27:09      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:boolean   treenode   else   his   amp   二叉树   this   val   als   

public class 平衡二叉树
{
    public class TreeNode
    {
        TreeNode left;
        TreeNode right;
        int val;

        TreeNode(int x)
        {
            this.val = x;
        }
    }

    // 获取深度
    private int getDepth(TreeNode tree, int currentDepth)
    {
        if (tree == null)
        {
            return currentDepth;
        }
        return Math.max(getDepth(tree.left, currentDepth + 1),
                getDepth(tree.right, currentDepth + 1));

    }

    // 采用递归解决
    public boolean isBalanced(TreeNode root)
    {
        if (root == null)
        {
            return true;
        }
        int depthOfLeft = getDepth(root.left, 1);
        int depthOfRight = getDepth(root.right, 1);
        if (Math.abs(depthOfLeft - depthOfRight) > 1)
        {
            return false;
        }
        else
        {
            return isBalanced(root.left) && isBalanced(root.right);
        }
    }
}

java 递归实现平衡二叉树

标签:boolean   treenode   else   his   amp   二叉树   this   val   als   

原文地址:http://www.cnblogs.com/qingtianBKY/p/6915417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!