题目描述:

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

递归递归递.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxDepth(TreeNode *root) {
if(root == NULL) return 0;
int left_depth = 1, right_depth = 1;
if(root->left != NULL)
left_depth = maxDepth(root->left) + 1;
if(root->right != NULL)
right_depth = maxDepth(root->right) + 1;

return left_depth > right_depth ? left_depth : right_depth;
}
};