栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

二叉树的最大深度

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

二叉树的最大深度

代码实现:

public class MaxDepth {
    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;
        }
    }

    //通过层序遍历的方法获取最大高度
    public int maxDepth1(TreeNode root) {
        int depth = 0;
        if (root == null) return depth;
        List list = new ArrayList<>();
        list.add(root);
        while (!list.isEmpty()) {
            depth++;
            List temp = new ArrayList<>();
            for (int i = 0; i < list.size(); i++) {
                if (list.get(i).left != null) {
                    temp.add(list.get(i).left);
                }
                if (list.get(i).right != null) {
                    temp.add(list.get(i).right);
                }
            }
            list = temp;
        }
        return depth;
    }


    //有点像动态规划  叶子节点的时候是 1 ,公式 : Math.max(maxDepth(root.left), maxDepth(root.right)) + 1
    public int maxDepth(TreeNode root) {
        return root == null ? 0 : Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
    }
    
}

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/827049.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号