forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
56 lines (42 loc) · 1.12 KB
/
main.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
/// Source : https://leetcode.com/problems/increasing-order-search-tree/description/
/// Author : liuyubobobo
/// Time : 2018-09-01
#include <iostream>
#include <vector>
using namespace std;
/// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
/// Inorder traversal and store all the nodes
/// Time Complexity: O(n)
/// Space Complexity: O(n)
class Solution {
public:
TreeNode* increasingBST(TreeNode* root) {
if(root == NULL)
return NULL;
vector<TreeNode*> nodes;
inOrder(root, nodes);
for(int i = 1; i < nodes.size(); i ++){
nodes[i - 1]->left = NULL;
nodes[i - 1]->right = nodes[i];
}
nodes.back()->left = nodes.back()->right = NULL;
return nodes[0];
}
private:
void inOrder(TreeNode* node, vector<TreeNode*>& nodes){
if(node == NULL)
return;
inOrder(node->left, nodes);
nodes.push_back(node);
inOrder(node->right, nodes);
}
};
int main() {
return 0;
}