-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserialise_deserialise_bst.cpp
56 lines (54 loc) · 1.46 KB
/
serialise_deserialise_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
/**
* 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:
string serialize(TreeNode* root) {
ostringstream out;
serializeHelper(root, out);
return out.str();
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
if(data.empty()) {
return NULL;
}
istringstream in(data);
queue<int> q;
string val;
while(in >> val) {
q.push(stoi(val));
}
return deserializeHelper(q, INT_MIN, INT_MAX);
}
private:
void serializeHelper(TreeNode* root, ostringstream& out) {
if(root == NULL)
return;
out << root -> val << " ";
serializeHelper(root->left, out);
serializeHelper(root->right, out);
}
TreeNode* deserializeHelper(queue<int>& q, int lower, int upper) {
if(q.empty())
return NULL;
int cur = q.front();
if(cur < lower || cur > upper) {
return NULL;
}
TreeNode* root = new TreeNode(cur);
q.pop();
root -> left = deserializeHelper(q, lower, cur);
root -> right = deserializeHelper(q, cur, upper);
return root;
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));