-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodec
More file actions
50 lines (42 loc) · 1.15 KB
/
Copy pathCodec
File metadata and controls
50 lines (42 loc) · 1.15 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
class Codec {
public:
// ---------- SERIALIZE ----------
void serializeHelper(TreeNode* root, string &res) {
if (!root) {
res += "null,";
return;
}
res += to_string(root->val) + ",";
serializeHelper(root->left, res);
serializeHelper(root->right, res);
}
string serialize(TreeNode* root) {
string res;
serializeHelper(root, res);
return res;
}
// ---------- DESERIALIZE ----------
TreeNode* deserializeHelper(queue<string> &q) {
string val = q.front();
q.pop();
if (val == "null") return nullptr;
TreeNode* node = new TreeNode(stoi(val));
node->left = deserializeHelper(q);
node->right = deserializeHelper(q);
return node;
}
TreeNode* deserialize(string data) {
if (data.empty()) return nullptr;
queue<string> q;
string temp;
for (char c : data) {
if (c == ',') {
q.push(temp);
temp.clear();
} else {
temp += c;
}
}
return deserializeHelper(q);
}
};