-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0297-serialize-and-deserialize-binary-tree.java
54 lines (48 loc) · 1.41 KB
/
0297-serialize-and-deserialize-binary-tree.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
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Codec {
private int i;
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
List<String> list = new ArrayList<>();
serializeDFS(root, list);
return String.join(",", list);
}
private void serializeDFS(TreeNode root, List<String> list) {
if (root == null) {
list.add("N");
return;
}
list.add(String.valueOf(root.val));
serializeDFS(root.left, list);
serializeDFS(root.right, list);
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
String[] tokens = data.split(",");
return deserializeDFS(tokens);
}
private TreeNode deserializeDFS(String[] tokens) {
String token = tokens[this.i];
if (token.equals("N")) {
this.i++;
return null;
}
var node = new TreeNode(Integer.parseInt(token));
this.i++;
node.left = deserializeDFS(tokens);
node.right = deserializeDFS(tokens);
return node;
}
}
// Your Codec object will be instantiated and called as such:
// Codec ser = new Codec();
// Codec deser = new Codec();
// TreeNode ans = deser.deserialize(ser.serialize(root));