-
Notifications
You must be signed in to change notification settings - Fork 0
/
104.二叉树的最大深度.cpp
61 lines (55 loc) · 1.6 KB
/
104.二叉树的最大深度.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* @lc app=leetcode.cn id=104 lang=cpp
*
* [104] 二叉树的最大深度
*/
// @lc code=start
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
// 记录最大深度
int res = 0;
// 记录遍历到节点的深度
int depth = 0;
int maxDepth(TreeNode* root) {
traverse(root);
return res;
}
void traverse(TreeNode* root) {
if (root==nullptr) return;
// 前序位置
depth++;
if (root->left == nullptr && root->right == nullptr) {
// 到达叶子结点,更新最大深度
res = max(res, depth);
}
traverse(root->left);
traverse(root->right);
// 后序位置重制 depth
depth--;
}
// // 定义:输入根节点,返回这棵二叉树的最大深度
// int maxDepth(TreeNode root) {
// if (root == null) {
// return 0;
// }
// // 利用定义,计算左右子树的最大深度
// int leftMax = maxDepth(root.left);
// int rightMax = maxDepth(root.right);
// // 整棵树的最大深度等于左右子树的最大深度取最大值,
// // 然后再加上根节点自己
// int res = Math.max(leftMax, rightMax) + 1;
// return res;
// }
};
// @lc code=end