leetcode 104_maximumdepthofbinarytree

Description

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.

Solution

利用递归。

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

一行代码:

1
2
3
4
5
6
class Solution {
public:
int (TreeNode* root) {
return root == NULL ? 0 : max(maxDepth(root -> left), maxDepth(root -> right)) + 1;
}
};