首页 > 代码库 > 【复】判断树的平衡,
【复】判断树的平衡,
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */public class Solution { public boolean isBalanced(TreeNode root) { if(root==null) return true; int d1=depth(root.right); int d2=depth(root.left); if(Math.abs(d1-d2)>1) return false; else return isBalanced(root.left)&&isBalanced(root.right); } public int depth(TreeNode node) { if(node==null) return 0; int d1=depth(node.right); int d2=depth(node.left); int max=d1>d2?d1:d2; return max+1; } }
2.求高度的时候在不平衡的时候返回-1就ok了,不用求高度,但是效率好像没啥变化
/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */public class Solution { private boolean ans=true; public boolean isBalanced(TreeNode root) { if(root==null) return true; if(depth(root)==-1) return false; return true; } public int depth(TreeNode node) { if(node==null) return 0; int d1=depth(node.right); int d2=depth(node.left); if(d1==-1||d2==-1) return -1; if(Math.abs(d1-d2)>1) return -1; return Math.max(d1,d2)+1; } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。