111. 二叉树的最小深度(简单)
给定一个二叉树,找出其最小深度。
最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7],
返回它的最小深度 2.
来源:力扣(LeetCode)
链接: https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/
思路:
和104的思路一样,也是递归,但是要判断一下临界条件,当左右深度有为0的时候,单独进行判断
代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
class Solution { public int minDepth(TreeNode root) { if(root == null) return 0; int leftDepth = minDepth(root.left); int rightDepth = minDepth(root.right); if(leftDepth == 0 ||rightDepth == 0){ return leftDepth+rightDepth+1; } return Math.min(leftDepth,rightDepth)+1; } }
|
代码
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
| class Solution { public int minDepth(TreeNode root) { if(root==null){ return 0; } Queue<TreeNode> queue = new LinkedList<>(); queue.offer(root); int depth=1; while(!queue.isEmpty()){ int sz = queue.size(); for(int i=0;i<sz;i++){ TreeNode tmp = queue.poll(); if(tmp.left==null && tmp.right==null){ return depth; } if(tmp.left!=null){ queue.offer(tmp.left); } if(tmp.right!=null){ queue.offer(tmp.right); } } depth++; } return depth; } }
|