LeetCode 111. 二叉树的最小深度

111. 二叉树的最小深度

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

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

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

示例 1:

输入:root = [3,9,20,null,null,15,7]
输出:2

示例 2:

输入:root = [2,null,3,null,4,null,5,null,6]
输出:5

提示:

  • 树中节点数的范围在 [0, 10^5] 内
  • -1000 <= Node.val <= 1000

解法思路:

1、递归/深度优先遍历(Recursion,Depth-First Traversal)

2、迭代/广度优先遍历(Iterator,Breadth-First Traversal)

法一:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public int minDepth(TreeNode root) {
        // Recursion,Depth-First Traversal
        // Time: O(n) n 节点数
        // Space: O(h) h 高度
        if (root == null) return 0;
        int d1 = minDepth(root.left);
        int d2 = minDepth(root.right);
        // 左子树和右子树都为空,
        // 左子树或右子树有一个为空,        
        // 左子树和右子树都不为空
        return root.left == null || root.right == null ? d1 + d2 + 1 : Math.min(d1, d2) + 1;
    }
}

法二:

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public int minDepth(TreeNode root) {
        // Iterator, Breadth-First Traversal
        // Time: O(n) n 节点数
        // Space: O(n) 每一层最大的节点数,最好n,最坏1
        if (root == null) return 0;
        Deque<TreeNode> queue = new ArrayDeque<>();
        queue.addLast(root);
        int depth = 1;
        while (!queue.isEmpty()) {
            int size = queue.size();
            while (size-- > 0) {
                TreeNode node = queue.removeFirst();
                if (node.left == null && node.right == null) {
                    return depth;
                }
                if (node.left != null) {
                    queue.addLast(node.left);
                }
                if (node.right != null) {
                    queue.addLast(node.right);
                }
            }
            depth++;
        }
        return depth;
    }
}

 

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-01-18 09:16:04       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-01-18 09:16:04       106 阅读
  3. 在Django里面运行非项目文件

    2024-01-18 09:16:04       87 阅读
  4. Python语言-面向对象

    2024-01-18 09:16:04       96 阅读

热门阅读

  1. c语言复习:常见函数与错误

    2024-01-18 09:16:04       51 阅读
  2. 算法专题:差分数组

    2024-01-18 09:16:04       54 阅读
  3. Android在系统界面上添加窗口

    2024-01-18 09:16:04       54 阅读
  4. 【低危】OpenSSL 拒绝服务漏洞

    2024-01-18 09:16:04       52 阅读
  5. 科技的成就(五十五)

    2024-01-18 09:16:04       55 阅读