-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathencode-n-ary-tree-to-binary-tree.cpp
83 lines (75 loc) · 2 KB
/
encode-n-ary-tree-to-binary-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
82
83
// Time: O(n)
// Space: O(h)
/*
// Definition for a Node.
class Node {
public:
int val = NULL;
vector<Node*> children;
Node() {}
Node(int _val, vector<Node*> _children) {
val = _val;
children = _children;
}
};
*/
/**
* 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 an n-ary tree to a binary tree.
TreeNode* encode(Node* root) {
if (root == nullptr) {
return nullptr;
}
auto node = new TreeNode(root->val);
if (!root->children.empty()) {
node->right = encodeHelper(root->children[0], root, 0);
}
return node;
}
// Decodes your binary tree to an n-ary tree.
Node* decode(TreeNode* root) {
if (root == nullptr) {
return nullptr;
}
vector<Node*> children;
auto node = new Node(root->val, children);
decodeHelper(root->right, node);
return node;
}
private:
TreeNode *encodeHelper(Node *root, Node *parent, int index) {
if (root == nullptr) {
return nullptr;
}
auto node = new TreeNode(root->val);
if (index + 1 < parent->children.size()) {
node->left = encodeHelper(parent->children[index + 1], parent, index + 1);
}
if (!root->children.empty()) {
node->right = encodeHelper(root->children[0], root, 0);
}
return node;
}
void decodeHelper(TreeNode* root, Node* parent) {
if (!root) {
return;
}
vector<Node*> children;
auto node = new Node(root->val, children);
decodeHelper(root->right, node);
parent->children.push_back(node);
decodeHelper(root->left, parent);
}
};
// Your Codec object will be instantiated and called as such:
// Codec codec;
// codec.decode(codec.encode(root));