Leetcode刷题之旅--559. N叉树的最大深度

题目描述:
在这里插入图片描述

思路:和二叉树的深度一样,只不过换成了n叉树。左右孩子换成了一个孩子列表。
题目给的结点定义

import java.util.List;

class Node {
    public int val;
    public List<Node> children;

    public Node() {}

    public Node(int _val) {
        val = _val;
    }

    public Node(int _val, List<Node> _children) {
        val = _val;
        children = _children;
    }
}

解决:

import java.util.LinkedList;
import java.util.List;

class Solution {
    public int maxDepth(Node root) {
        if (root==null) return 0;
        if (root.children.isEmpty()) return 1;
        List height=new LinkedList();
        int maxhei=0;
        int hei=0;
        for (int i=0;i<root.children.size();i++){
            hei=maxDepth(root.children.get(i));
            height.add(hei);
            maxhei=hei>maxhei?hei:maxhei;
        }
        return maxhei+1;
    }
}

此外 还有迭代和栈来解决的方法。
附上官方迭代+栈的解法。

import javafx.util.Pair;
        import java.lang.Math;

class Solution {
    public int maxDepth(Node root) {
        Queue<Pair<Node, Integer>> stack = new LinkedList<>();
        if (root != null) {
            stack.add(new Pair(root, 1));
        }

        int depth = 0;
        while (!stack.isEmpty()) {
            Pair<Node, Integer> current = stack.poll();
            root = current.getKey();
            int current_depth = current.getValue();
            if (root != null) {
                depth = Math.max(depth, current_depth);
                for (Node c : root.children) {
                    stack.add(new Pair(c, current_depth + 1));
                }
            }
        }
        return depth;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值