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.
The key problem is that recursive func should return not only T/F to indicate
if subtree is balanced, but also the depth for parent root to decide if
left/right has the same depth.
we use the TreeNode->val to store the depth, so an initialize of val is
needed at first.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
[LeetCode] [Balanced Binary Tree 2012-10-08 ],布布扣,bubuko.com