【LeetCode】559. N叉树的最大深度

xiaoxiao2025-08-23  110

题目链接:https://leetcode-cn.com/problems/maximum-depth-of-n-ary-tree/description/

题目描述

给定一个 N 叉树,找到其最大深度。

最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。

例如,给定一个 3叉树 :

我们应返回其最大深度,3。

说明:

树的深度不会超过 1000。树的节点总不会超过 5000。

解决方法

/* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() {} Node(int _val, vector<Node*> _children) { val = _val; children = _children; } }; */ class Solution { public: int maxDepth(Node* root) { if (!root) return 0; int res=0; for (int i=0;i<root->children.size();i++) res=max(res,maxDepth(root->children[i])); return res+1; } };
转载请注明原文地址: https://www.6miu.com/read-5035195.html

最新回复(0)