-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cpp
More file actions
72 lines (55 loc) · 1.41 KB
/
test.cpp
File metadata and controls
72 lines (55 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* Definition for a binary tree node.
*/
#include"import.h"
using namespace std;
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) {
if (!root) return "";
string result = "";
queue<TreeNode*> mytree;
mytree.push(root);
while (!mytree.empty()) {
TreeNode * temp = mytree.front();
mytree.pop();
if (temp != NULL) {
result += to_string(temp->val) + ",";
}
else {
result += "n,";
}
mytree.push(temp->left);
mytree.push(temp->right);
}
//result.pop_back();
cout << result << endl;
return result;
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
return NULL;
// if(data.empty()) return NULL;
// TreeNode * root;
// TreeNode* temp;
// vector<string> nodes;
// while(!data.empty()){
// auto first = data.find_first_of(",");
// nodes.push_back(data.substr(0,first-0));
// data.erase(0,first+1);
// }
// cout << atoi(nodes[0].c_str());
// // cout << root->val <<endl;
// return root;
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.deserialize(codec.serialize(root));