`
blue2048
  • 浏览: 185834 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

[leetcode]Minimum Depth of Binary Tree-java 广度遍历

阅读更多
/**

 * Definition for binary tree

 * public class TreeNode {

 *     int val;

 *     TreeNode left;

 *     TreeNode right;

 *     TreeNode(int x) { val = x; }

 * }

 */

public class Solution {

   public int minDepth(TreeNode root) {

        if(root==null){

            return 0;

        }

        LinkedList<TreeNode> queue = new LinkedList<TreeNode>();

        LinkedList<TreeNode> childQueue = new LinkedList<TreeNode>();

        queue.add(root);

        int depth = 1;

        while (!queue.isEmpty()){

            TreeNode node = queue.remove();

            if(node.left==null && node.right==null){

                return depth;

            }

            if(node.left!=null){

                childQueue.add(node.left);

            }

            if(node.right!=null){

                childQueue.add(node.right);

            }

            if(queue.isEmpty() && !childQueue.isEmpty()){

                depth++;

                queue.addAll(childQueue);

                childQueue.clear();

            }

        }

        return depth;

    }

}

 

分享到:
评论

相关推荐

    python-leetcode题解之111-Minimum-Depth-of-Binary-Tree

    在这里,特指解决LeetCode上的第111题,即“Minimum Depth of Binary Tree”。 4. Minimum Depth of Binary Tree(二叉树的最小深度):在计算机科学中,特别是在树数据结构中,最小深度是指从根节点到最近的叶子...

    minimum-depth-of-binary-tree.rar_leetcode

    在提供的"minimum depth of binary tree"代码中,可能包含了上述的一种或多种解冑策略。解冑代码应该能够处理各种类型的二叉树,包括平衡树和高度不均衡的树,同时具有良好的时间复杂度和空间复杂度。具体实现细节和...

    最大公共字符串leetcode-leetcode:坚持每周刷一道LeetCode题

    思路二:广度优先遍历,逐层遍历节点,遇到第一个叶子节点返回其深度; 代码: 2、栈 题目: Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are+,-,*,/. Each ...

    常见算法介绍、算法刷题(含解析与代码)、笔试面试算法题文档

    - **最小生成树(MST - Minimum Spanning Tree)**:在一个加权无向图中,找到一棵包含所有顶点且总权重最小的生成树。 #### 分而治之算法 这种策略将问题分解成若干个子问题,这些子问题实际上与原问题形式相同或...

Global site tag (gtag.js) - Google Analytics