首页 > 其他 > 详细

leetcode Balanced Binary Tree

时间:2014-09-26 12:22:09      阅读:280      评论:0      收藏:0      [点我收藏+]

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.

 

 1 /**
 2  * Definition for binary tree
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 public class Solution {
11     
12         private int heightOfTree(TreeNode root) {
13         int height;
14         if (root == null) {
15             return -1;
16         }
17         
18         int hleft=heightOfTree(root.left);
19         int rlegt=heightOfTree(root.right);
20         height=1+Math.max(hleft, rlegt);
21         return height;
22     }
23     
24     public boolean isBalanced(TreeNode root) {
25         if (root == null) {
26             return true;
27         }
28         int height=heightOfTree(root.left)-heightOfTree(root.right);
29         if (height>1 || height<-1) {
30             return false;
31         }
32         if (!isBalanced(root.left)) {
33             return false;
34         }
35         if (!isBalanced(root.right)) {
36             return false;
37         }
38         return true;
39         
40     }
41 }

 

leetcode Balanced Binary Tree

原文:http://www.cnblogs.com/birdhack/p/3994366.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!