-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodec.java
57 lines (49 loc) · 1.59 KB
/
Codec.java
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
package Q0297_Serialize_and_Deserialize_Binary_Tree;
import java.util.Arrays;
import java.util.LinkedList;
// Definition for a binary tree node.
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
class Codec {
private static final String separator = ",";
private static final String nullStr = "#";
private void buildString(TreeNode node, StringBuilder sb) {
if (node == null) {
sb.append(nullStr + separator);
} else {
sb.append(node.val).append(separator);
buildString(node.left, sb);
buildString(node.right, sb);
}
}
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
StringBuilder sb = new StringBuilder();
buildString(root, sb);
return sb.toString();
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
LinkedList<String> nodes = new LinkedList<>();
nodes.addAll(Arrays.asList(data.split(separator)));
return buildTree(nodes);
}
private TreeNode buildTree(LinkedList<String> nodes) {
String val = nodes.remove();
if (val.equals(nullStr)) {
return null;
} else {
TreeNode node = new TreeNode(Integer.valueOf(val));
node.left = buildTree(nodes);
node.right = buildTree(nodes);
return node;
}
}
}
// Your Codec object will be instantiated and called as such:
// Codec codec = new Codec();
// codec.deserialize(codec.serialize(root));