-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_STOII_0054_convertBST.cc
55 lines (52 loc) · 1.24 KB
/
Problem_STOII_0054_convertBST.cc
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
#include <iostream>
#include <vector>
using namespace std;
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) {}
};
// seem as leetcode 0538 1038
// https://leetcode-cn.com/problems/convert-bst-to-greater-tree/
// https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/
// see at Problem_0538_convertBST.cc Problem_1038_bstToGst.cc
// 反向 Morris 遍历
class Solution
{
public:
TreeNode *convertBST(TreeNode *root)
{
TreeNode *cur = root;
TreeNode *mostLeft = nullptr;
int sum = 0;
while (cur != nullptr)
{
mostLeft = cur->right;
if (mostLeft)
{
while (mostLeft->left != nullptr && mostLeft->left != cur)
{
mostLeft = mostLeft->left;
}
if (mostLeft->left == nullptr)
{
mostLeft->left = cur;
cur = cur->right;
continue;
}
else
{
mostLeft->left = nullptr;
}
}
sum += cur->val;
cur->val = sum;
cur = cur->left;
}
return root;
}
};