104. 二叉树的最大深度

Problem: 104. 二叉树的最大深度

解题方法

后序遍历,得到一个左右孩子的深度值进行比较,取其中深度更大的一个。
返回条件是:达到了叶子节点。

到达一个节点就对左右孩子比较。

复杂度

时间复杂度:

添加时间复杂度, 示例: $O(n)$

空间复杂度:

添加空间复杂度, 示例: $O(n)$

Code

[]
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

/**

 * Definition for a binary tree node.

 * public class TreeNode {

 *     public int val;

 *     public TreeNode left;

 *     public TreeNode right;

 *     public TreeNode(int val=0, TreeNode left=null, TreeNode right=null) {

 *         this.val = val;

 *         this.left = left;

 *         this.right = right;

 *     }

 * }

 */

class Solution {

public:

    int maxDepth(TreeNode* root) {

        return foreach(root);

    }

    int foreach(TreeNode* node) {

        if(node == nullptr) return 0;

        int left = foreach(node->left);

        int right =  foreach(node->right);

        int max = std::max(left,right) + 1;

        return max;

    }

};