110 平衡二叉树

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode() {}
  8. * TreeNode(int val) { this.val = val; }
  9. * TreeNode(int val, TreeNode left, TreeNode right) {
  10. * this.val = val;
  11. * this.left = left;
  12. * this.right = right;
  13. * }
  14. * }
  15. */
  16. class Solution {
  17. public boolean isBalanced(TreeNode root) {
  18. if (root == null) {
  19. return true;
  20. } else {
  21. return Math.abs(height(root.left) - height(root.right)) <= 1 && isBalanced(root.left) && isBalanced(root.right);
  22. }
  23. }
  24. public int height(TreeNode root) {
  25. if (root == null) {
  26. return 0;
  27. } else {
  28. return Math.max(height(root.left), height(root.right)) + 1;
  29. }
  30. }
  31. }