-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathBinary Tree Maximum Path Sum.cpp
56 lines (39 loc) · 1.44 KB
/
Binary Tree Maximum Path Sum.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
/*
Solution by Rahul Surana
***********************************************************
A path in a binary tree is a sequence of nodes where each pair of adjacent nodes in the sequence has an edge connecting them.
A node can only appear in the sequence at most once. Note that the path does not need to pass through the root.
The path sum of a path is the sum of the node's values in the path.
Given the root of a binary tree, return the maximum path sum of any path.
***********************************************************
*/
#include <bits/stdc++.h>
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int ds(TreeNode* root,int& ans){
if(root == NULL) return 0;
int l = ds(root->left,ans);
int r = ds(root->right,ans);
int c = root->val;
int s = max(c,max(c+l,c+r));
ans = max(ans, max(s,c+r+l));
// cout << ans <<" " << root->val << " \n";
return s;
}
int maxPathSum(TreeNode* root) {
int ans = INT_MIN;
ds(root,ans);
return ans;
}
};