2021-12-04(JZ79 判断是不是平衡二叉树)
public class Solution { public boolean IsBalanced_Solution(TreeNode root) { return depth(root)>=0; } public int depth(TreeNode root){ if(root==null){ return 0; } int left=depth(root.left);