-
Notifications
You must be signed in to change notification settings - Fork 1
/
124.cpp
58 lines (54 loc) · 1.18 KB
/
124.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
/**
* 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 getMaxPath(TreeNode *p, TreeNode *f) {
if (f->left != NULL && f->left->val > 0) {
p->val += f->left->val;
}
if (f->right != NULL && f->right->val > 0) {
p->val += f->right->val;
}
int max = p->val;
if (p->left != NULL) {
int leftMax = getMaxPath(p->left, f->left);
if (leftMax > max)
max = leftMax;
}
if (p->right != NULL) {
int rightMax = getMaxPath(p->right, f->right);
if (rightMax > max)
max = rightMax;
}
return max;
}
TreeNode *getMaxSonPath(TreeNode *p) {
TreeNode *node = new TreeNode(p->val);
int max = 0;
if (p->left != NULL) {
node->left = getMaxSonPath(p->left);
int leftPath = node->left->val;
if (leftPath > max)
max = leftPath;
}
if (p->right != NULL) {
node->right = getMaxSonPath(p->right);
int rightPath = node->right->val;
if (rightPath > max)
max = rightPath;
}
node->val += max;
return node;
}
int maxPathSum(TreeNode* root) {
TreeNode *froot = getMaxSonPath(root);
return getMaxPath(root, froot);
}
};