LeetCode(111&104):二叉树的最小深度+最大深度 Minimum or Maximum Depth of Binary Tree(Java)

这篇博客介绍了如何使用Java解决LeetCode中的二叉树最小深度和最大深度问题。最小深度通过剪枝的层序遍历求解,最大深度则通过递归计算。文章提供了详细的解决方案并附带相关代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2019.4.3  #程序员笔试必备# LeetCode 从零单刷个人笔记整理(持续更新)

本期开始更LeetCode,因为博客速度已经远远赶不上刷题速度,因此考虑只把比较有价值的题目放上博客作为记录。

深度就是按层计数的结点数,一个结点的深度是1。

二叉树的最小深度可以依靠剪枝层序遍历,也就是从根节点开始进行BFS,当遇到第一个叶子结点的时候停止,此时的深度对应着最小深度。

二叉树的最大深度只需要进行简单的递归,每个结点的最大深度等于左子树的最大深度与右子树的最大深度的较大值+1。


传送门:二叉树的最小深度

Given a binary tree, find its minimum depth.

The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

Note: A leaf is a node with no children.

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

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

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

示例:

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

    3
   / \
  9  20
    /  \
   15   7
返回它的最小深度 2.

 

传送门:二叉树的最大深度

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

Note: A leaf is a node with no children.

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

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

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

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

    3
   / \
  9  20
    /  \
   15   7
返回它的最大深度 3 。

Java实现:

/**
 * 
 * @author ChopinXBP
 * Given a binary tree, find its minimum depth. The minimum
 * depth is the number of nodes along the shortest path from the root
 * node down to the nearest leaf node.
 * 
 *
 */

import java.util.ArrayDeque;
import java.util.LinkedList;

public class MinDepthofBintree {

	// Definition for binary tree
	public static class TreeNode {
		int val;
		TreeNode left;
		TreeNode right;

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

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		TreeNode root = new TreeNode(1);
		root = Init(root);
		int min = Solution(root);
		System.out.println(min);
		// int max = Solution(root);
		// System.out.println(max);
	}

	public static TreeNode Init(TreeNode root) {
		TreeNode pNode = root;
		pNode.left = new TreeNode(2);
		pNode.right = new TreeNode(3);
		pNode = root.left;
		pNode.left = new TreeNode(4);
		//pNode.right = new TreeNode(4);
		//pNode = root.right;
		//pNode.right = new TreeNode(5);
		//pNode.right = new TreeNode(6);
		// pNode = root.left.left;
		// pNode.left = new TreeNode(7);
		// pNode.right = new TreeNode(8);
		// pNode = root.right.left;
		// pNode.left = new TreeNode(9);
		return root;
	}


	public static int Solution(TreeNode root) {
		if (root == null) return 0;
		//队列模拟BFS
		ArrayDeque<TreeNode> treeNode = new ArrayDeque<TreeNode>();
		treeNode.add(root);
		//返回最小深度
		int minDepth = 10000;
		return SearchMin(treeNode, 1, minDepth);
		//返回最大深度
		//int maxDepth = 0;
		//return SearchMax(treeNode, 1, maxDepth);
		
	}

	public static int SearchMin(ArrayDeque<TreeNode> treeNode, int depth, int minDepth) {
		//队列为空时结束遍历
		if (treeNode.isEmpty()) return minDepth;
		//每次一层所有结点出队
		int size = treeNode.size();
		for(int i = 0;i < size;i++){
			TreeNode newroot = treeNode.poll();
			//仅当访问到叶子结点时更新值
			if(newroot.left == null && newroot.right == null){
				if(depth < minDepth) minDepth = depth;
				return minDepth;		//找到第一个叶子结点则为最小深度对应的叶子结点,可以直接返回
			}
			else if(newroot.left == null){
				treeNode.add(newroot.right);
			}
			else if(newroot.right == null){
				treeNode.add(newroot.left);
			}
			else{
				treeNode.add(newroot.left);
				treeNode.add(newroot.right);
			}
		}
		//每增加一层,depth++
		return SearchMin(treeNode, depth + 1, minDepth);		
	}

	public static int SearchMax(ArrayDeque<TreeNode> treeNode, int depth, int maxDepth) {
		//队列为空时结束遍历
		if (treeNode.isEmpty()) return maxDepth - 1;
		//每次一层所有结点出队
		int size = treeNode.size();
		for(int i = 0;i < size;i++){
			TreeNode newroot = treeNode.poll();
			//仅当访问到叶子结点时更新值
			if(newroot.left == null && newroot.right == null){
				if(depth > maxDepth) maxDepth = depth;
			}
			else if(newroot.left == null){
				treeNode.add(newroot.right);
			}
			else if(newroot.right == null){
				treeNode.add(newroot.left);
			}
			else{
				treeNode.add(newroot.left);
				treeNode.add(newroot.right);
			}
		}
		//每增加一层,depth++
		return SearchMax(treeNode, depth + 1, maxDepth);		
	}
	
	
	////////////////////解答参考////////////////////
	//最小深度
    /**
     * 思路1:
     * 深度优先遍历(DFS)
     * 递归比较左右子树深度最小值
     * 如果当前节点是空,则最小深度为 0,返回
     * 效率低
     */
    public int run(TreeNode root) {
        if (root == null) {
            return 0;
        }
        int l = run(root.left);
        int r = run(root.right);
        if (l == 0 || r == 0) {
            return l + r + 1;
        }
        return Math.min(l, r) + 1;
    }
     
    /**
     * 思路2:
     * 广度优先遍历(BFS)
     * 模拟层序
     * 找到第一个叶子结点就可以停止遍历
     * 效率高
     */
    public int run1(TreeNode root) {
        if (root == null) {
            return 0;
        }
        LinkedList<TreeNode> queue = new LinkedList<TreeNode>();
        LinkedList<TreeNode> layerList = new LinkedList<TreeNode>();
        queue.addFirst(root);
        int start = 0;
        int end = 1;
        int level = 1;
        while (!queue.isEmpty()) {
            TreeNode temp = queue.removeLast();
            start++;
            layerList.addFirst(temp);
            if (temp.left == null && temp.right == null) {
                return level;
            }
            if (temp.left != null) {
                queue.addFirst(temp.left);
            }
            if (temp.right != null) {
                queue.addFirst(temp.right);
            }
            if (start == end) {
                level++;
                start = 0;
                end = queue.size();
                layerList = new LinkedList<TreeNode>();
            }
        }
         
        return level;
    }

    //最大深度
    public int maxDepth(TreeNode root) {
    	if(root==null) return 0;
    	return Math.max(maxDepth(root.left), maxDepth(root.right))+1;
    }
}

#Coding一小时,Copying一秒钟。留个言点个赞呗,谢谢你#

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值