-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path#1038 Binary Search Tree to Greater Sum Tree.cpp
48 lines (48 loc) · 1.33 KB
/
#1038 Binary Search Tree to Greater Sum Tree.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
/**
* 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:
TreeNode* bstToGst(TreeNode* root) {
vector<int> use;
queue<TreeNode*> q;
q.push(root);
TreeNode* p;
while(!q.empty()){
int n=q.size();
for(int i=0;i<n;i++){
p=q.front();
q.pop();
use.push_back(p->val);
if(p->left) q.push(p->left);
if(p->right) q.push(p->right);
}
}
sort(use.begin(),use.end());
q.push(root);
while(!q.empty()){
int n=q.size();
for(int i=0;i<n;i++){
p=q.front();
q.pop();
auto it = std::upper_bound(use.begin(), use.end(), p->val);
int sum = 0;
for (auto iter = it; iter != use.end(); iter++) {
sum += *iter;
}
p->val+=sum;
if(p->left) q.push(p->left);
if(p->right) q.push(p->right);
}
}
return root;
}
};