-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathSerialize_and_Deserialize_N-ary_Tree.cpp
81 lines (74 loc) · 2.19 KB
/
Serialize_and_Deserialize_N-ary_Tree.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
77
78
79
80
81
/*
// Definition for a Node.
class Node {
public:
int val = NULL;
vector<Node*> children;
Node() {}
Node(int _val, vector<Node*> _children) {
val = _val;
children = _children;
}
};
*/
class Codec {
void serializeNode(Node* const node, string& msg) {
msg += to_string(node->val);
msg += "#";
msg += to_string((int)node->children.size());
msg += ',';
}
Node* deserializeNode(string const& data, int& offset) {
int end = data.find(',', offset);
if(end == string::npos) {
end = data.length();
}
int delimeter = data.find('#', offset);
int nodeValue = stoi(data.substr(offset, delimeter - offset));
offset = delimeter + 1;
int nodeChildrenCount = stoi(data.substr(offset, end - offset));
offset = end + 1;
vector<Node*> children(nodeChildrenCount);
return new Node(nodeValue, children);
}
public:
// Encodes a tree to a single string.
string serialize(Node* root) {
string result = "";
if(!root) return result;
queue <Node*> Q;
Q.push(root);
serializeNode(root, result);
while(!Q.empty()) {
Node* node = Q.front();
for (Node* child : node->children) {
serializeNode(child, result);
Q.push(child);
}
Q.pop();
}
return result.erase((int)result.length() - 1, 1);
}
// Decodes your encoded data to tree.
Node* deserialize(string data) {
Node* root = nullptr;
if(data.empty()) return root;
queue<Node*> Q;
int offset = 0;
root = deserializeNode(data, offset);
Q.push(root);
while(!Q.empty()) {
Node* node = Q.front();
for (int i = 0; i < (int)node->children.size(); i++) {
Node* child = deserializeNode(data, offset);
node->children[i] = child;
Q.push(child);
}
Q.pop();
}
return root;
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));