forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SerializeAndDeserializeBinaryTree.cpp
195 lines (161 loc) · 5.22 KB
/
SerializeAndDeserializeBinaryTree.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
// Source : https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
// Author : Hao Chen
// Date : 2015-11-10
/***************************************************************************************
*
* Serialization is the process of converting a data structure or object into a
* sequence of bits so that it can be stored in a file or memory buffer, or transmitted
* across a network connection link to be reconstructed later in the same or another
* computer environment.
*
* Design an algorithm to serialize and deserialize a binary tree. There is no
* restriction on how your serialization/deserialization algorithm should work. You
* just need to ensure that a binary tree can be serialized to a string and this string
* can be deserialized to the original tree structure.
*
* For example, you may serialize the following tree
*
* 1
* / \
* 2 3
* / \
* 4 5
*
* as "[1,2,3,null,null,4,5]", just the same as how LeetCode OJ serializes a binary
* tree. You do not necessarily need to follow this format, so please be creative and
* come up with different approaches yourself.
*
* Note: Do not use class member/global/static variables to store states. Your
* serialize and deserialize algorithms should be stateless.
*
* Credits:Special thanks to @Louis1992 for adding this problem and creating all test
* cases.
*
***************************************************************************************/
#include <iostream>
#include <sstream>
#include <vector>
#include <string>
using namespace std;
/**
* 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) {
return serialize02(root);
return serialize01(root);
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
return deserialize02(data);
return deserialize01(data);
}
/*
* ===============================================================================
* Using pre-order to serialize and deserialize the tree.
* ===============================================================================
*/
public:
// Encodes a tree to a single string.
string serialize01(TreeNode* root) {
string result;
vector<TreeNode*> v;
serializeHelper(root, v);
for(int i=0; i<v.size(); i++){
result = result + (v[i]==NULL ? "#" : to_string(v[i]->val)) + " ";
}
return result;
}
// Decodes your encoded data to tree.
TreeNode* deserialize01(string data) {
vector<TreeNode*> v;
split(data, ' ', v);
int index = 0;
return deserializeHelper(v, index);
}
private:
void serializeHelper(TreeNode* root, vector<TreeNode*>& v) {
if (root==NULL) {
v.push_back(NULL);
}else{
v.push_back(root);
serializeHelper(root->left, v);
serializeHelper(root->right, v);
}
}
TreeNode* deserializeHelper(vector<TreeNode*> &v, int& index) {
if (index >= v.size() ) return NULL;
TreeNode* root = v[index++];
if (root) {
root->left = deserializeHelper(v, index);
root->right = deserializeHelper(v, index);
}
return root;
}
void split(const string &s, char delim, vector<TreeNode*> &elems) {
stringstream ss(s);
string item;
while (getline(ss, item, delim)) {
TreeNode* node = (item=="#" ? NULL : new TreeNode( stoi(item)) );
elems.push_back(node);
}
}
/*
* ===============================================================================
* Using sstream instead of vector to improve the performance
* ===============================================================================
*/
public:
// Encodes a tree to a single string.
string serialize02(TreeNode* root) {
ostringstream out;
serialize(root, out);
return out.str();
}
// Decodes your encoded data to tree.
TreeNode* deserialize02(string data) {
istringstream in(data);
return deserialize(in);
}
private:
void serialize(TreeNode* root, ostringstream& out) {
if (root==NULL) {
out << "# ";
return;
}
out << root->val << " ";
serialize(root->left, out);
serialize(root->right, out);
}
TreeNode* deserialize(istringstream& in) {
string val;
in >> val;
if (val == "#" || val.empty() ) return NULL;
TreeNode* node = new TreeNode(stoi(val));
node->left = deserialize(in);
node->right = deserialize(in);
return node;
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));
int main(int argc, char** argv)
{
string s = "1 2 3 # # 4 5";
if (argc>1){
s = argv[1];
}
cout << s << endl;
Codec codec;
cout << codec.serialize(codec.deserialize(s)) << endl;
return 0;
}