111. 二叉树的最小深度(简单)

给定一个二叉树,找出其最小深度。

最小深度是从根节点到最近叶子节点的最短路径上的节点数量。

说明: 叶子节点是指没有子节点的节点。

示例:
给定二叉树 [3,9,20,null,null,15,7],

1
2
3
4
5
3
/ \
9 20
/ \
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
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int minDepth(TreeNode root) {
if(root == null)
return 0;
int leftDepth = minDepth(root.left);
int rightDepth = minDepth(root.right);
// 如果根的左节点或者右节点为null,是不满足根到叶子节点这个定义的
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) {
//BFS
if(root==null){
return 0;
}
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
//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;
}
}