559 N 叉树的最大深度

本文最后更新于:2022年4月9日 中午

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

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

N 叉树输入按层序遍历序列化表示,每组子节点由空值分隔(请参见示例)。

示例 1:

img
1
2
输入:root = [1,null,3,2,4,null,5,6]
输出:3

示例 2:

img
1
2
输入:root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
输出:5

提示:

  • 树的深度不会超过 1000
  • 树的节点数目位于 [0, 104] 之间。

Solution

同类型题 [104 二叉树的最大深度]

  • 递归法,“后序遍历”
1
2
3
4
5
6
7
8
9
10
11
class Solution {
public:
int maxDepth(Node* root) {
if (root == nullptr) return 0;
int depth = 0;
for (int i = 0; i < root->children.size(); ++i) {
depth = max(depth, maxDepth(root->children[i]));
}
return depth + 1;
}
};
  • 迭代法,层序遍历
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// @lc code=start
/*
// Definition for a Node.
class Node {
public:
int val;
vector<Node*> children;

Node() {}

Node(int _val) {
val = _val;
}

Node(int _val, vector<Node*> _children) {
val = _val;
children = _children;
}
};
*/

class Solution {
public:
int maxDepth(Node* root) {
if (root == nullptr) return 0;
int depth = 0;
queue<Node *> q;
q.push(root);
while (!q.empty()) {
int n = q.size();
depth++;
for (int i = 0; i < n; ++i) {
Node *node = q.front();
q.pop();
for (int j = 0; j < node->children.size(); ++j) {
if (node->children[j])
q.push(node->children[j]);
}
}
}
return depth;
}
};
// @lc code=end