-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path297.cpp
More file actions
50 lines (47 loc) · 1.23 KB
/
297.cpp
File metadata and controls
50 lines (47 loc) · 1.23 KB
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
/**
* 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 {
char token = ' ';
void serialize(TreeNode* root, ostringstream& OSS) {
if(!root){
OSS << '#' << token;
return;
}
OSS << root->val << token;
serialize(root->left,OSS);
serialize(root->right,OSS);
return;
}
TreeNode* deserialize(istringstream& ISS){
string res;
ISS >> res;
if(!res.compare("#"))
return nullptr;
TreeNode* root = new TreeNode(stoi(res));
root->left = deserialize(ISS);
root->right = deserialize(ISS);
return root;
}
public:
// Encodes a tree to a single string.
string serialize(TreeNode* root) {
ostringstream OSS;
serialize(root, OSS);
return OSS.str();
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
istringstream ISS(data);
return deserialize(ISS);
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));