blob: f7825210240057dd38b1c40429894176626ff1d2 (
plain)
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
|
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
};
#include <algorithm>
class Solution {
public:
int diameterOfBinaryTree(TreeNode *root) {
int max = 0;
depth(root, max);
return max;
}
static int depth(TreeNode *root, int &max) {
if (root == nullptr)
return -1;
auto left = depth(root->left, max) + 1;
auto right = depth(root->right, max) + 1;
auto current_max = left + right;
if (current_max > max) {
max = current_max;
}
return std::max(left, right);
}
};
|