forked from wisdompeak/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path449.Serialize and Deserialize BST.cpp
76 lines (64 loc) · 1.79 KB
/
449.Serialize and Deserialize BST.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Codec {
public:
// Encodes a tree to a single string.
string serialize(TreeNode* root)
{
string s;
DFS(root,s);
cout<<s<<endl;
return s;
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data)
{
if (data.size()==0) return NULL;
vector<int>preorder;
int i=0;
while (i<data.size())
{
string s="";
while (data[i]!=',')
{
s+=data[i];
i++;
}
preorder.push_back(stoi(s));
i++;
}
for (int i=0; i<preorder.size(); i++)
cout<<preorder[i]<<" ";
cout<<endl;
TreeNode *root = DFS2(preorder,0,INT_MIN,INT_MAX);
return root;
}
private:
void DFS(TreeNode* root, string& s)
{
if (root==NULL) return;
s+=to_string(root->val)+',';
DFS(root->left,s);
DFS(root->right,s);
}
TreeNode* DFS2(vector<int>& preorder,int curIdx, int MIN, int MAX)
{
if (curIdx>=preorder.size()) return NULL;
if (preorder[curIdx]<MIN || preorder[curIdx]>MAX)
return DFS2(preorder, curIdx+1, MIN, MAX);
TreeNode* root = new TreeNode(preorder[curIdx]);
root->left = DFS2(preorder,curIdx+1,MIN,root->val);
root->right = DFS2(preorder,curIdx+1,root->val,MAX);
return root;
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));