/** * 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; } }
相关推荐
在这里,特指解决LeetCode上的第111题,即“Minimum Depth of Binary Tree”。 4. Minimum Depth of Binary Tree(二叉树的最小深度):在计算机科学中,特别是在树数据结构中,最小深度是指从根节点到最近的叶子...
在提供的"minimum depth of binary tree"代码中,可能包含了上述的一种或多种解冑策略。解冑代码应该能够处理各种类型的二叉树,包括平衡树和高度不均衡的树,同时具有良好的时间复杂度和空间复杂度。具体实现细节和...
思路二:广度优先遍历,逐层遍历节点,遇到第一个叶子节点返回其深度; 代码: 2、栈 题目: Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are+,-,*,/. Each ...
- **最小生成树(MST - Minimum Spanning Tree)**:在一个加权无向图中,找到一棵包含所有顶点且总权重最小的生成树。 #### 分而治之算法 这种策略将问题分解成若干个子问题,这些子问题实际上与原问题形式相同或...