-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserializeandDeserializeBinaryTree.cpp
More file actions
55 lines (48 loc) · 1.28 KB
/
serializeandDeserializeBinaryTree.cpp
File metadata and controls
55 lines (48 loc) · 1.28 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
51
52
53
54
55
// Source: https://leetcode.com/problems/serialize-and-deserialize-binary-tree/
// Author: Miao Zhang
// Date: 2021-01-31
/**
* 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) {
string res;
dfs(root, res);
return res;
}
void dfs(TreeNode* root, string& res) {
if (!root) {
res += "null ";
return;
}
res += to_string(root->val);
res += " ";
dfs(root->left, res);
dfs(root->right, res);
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
istringstream in(data);
return dfs(in);
}
TreeNode* dfs(istringstream& in) {
string val;
in >> val;
if (val == "null") return nullptr;
TreeNode* node = new TreeNode(stoi(val));
node->left = dfs(in);
node->right = dfs(in);
return node;
}
};
// Your Codec object will be instantiated and called as such:
// Codec ser, deser;
// TreeNode* ans = deser.deserialize(ser.serialize(root));