摘要: 110. 平衡二叉树 难度:简单 1、递归求二叉树的深度 1 public int depth(TreeNode root){ 2 if(root==null){ 3 return 0; 4 } 5 return Math.max(depth(root.left),depth(root.right) 阅读全文
posted @ 2021-11-10 11:35 雷雷提 阅读(53) 评论(0) 推荐(0) 编辑