-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path297.Design.M-SerializeAndDeserializeBinaryTree.js
60 lines (56 loc) · 1.62 KB
/
297.Design.M-SerializeAndDeserializeBinaryTree.js
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
/**
* 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.
*/
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* Encodes a tree to a single string.
*
* @param {TreeNode} root
* @return {string}
*/
var serialize = function(root) {
const result = []
function helper(node) {
if(!node) {
result.push('null')
return null
}
result.push(node.val)
helper(node.left)
helper(node.right)
}
helper(root)
return result.join()
};
/**
* Decodes your encoded data to tree.
*
* @param {string} data
* @return {TreeNode}
*/
var deserialize = function(data) {
data = data.split(',')
let index = 0
function helper() {
if(index > data.length - 1 || data[index] === 'null') return null
const node = new TreeNode(data[index])
index++
node.left = helper()
index++
node.right = helper()
return node
}
return helper()
};
/**
* Your functions will be called as such:
* deserialize(serialize(root));
*/