forked from gouthampradhan/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SerializeDeserializeBinaryTree.java
107 lines (97 loc) · 3.66 KB
/
SerializeDeserializeBinaryTree.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package design;
import java.util.*;
/**
* Created by gouthamvidyapradhan on 11/03/2017.
* 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.
* <p>
* 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.
* <p>
* For example, you may serialize the following tree
* <p>
* 1
* / \
* 2 3
* / \
* 4 5
* as "[1,2,3,null,null,4,5]", just the same as how LeetCode OJ serializes a binary tree. You do not necessarily need to follow this format, so please be creative and come up with different approaches yourself.
* Note: Do not use class member/global/static variables to store states. Your serialize and deserialize algorithms should be stateless.
*/
public class SerializeDeserializeBinaryTree {
public static class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
private static final String NULL = "X";
/**
* Main method
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
TreeNode root = new TreeNode(1);
TreeNode two = new TreeNode(2);
TreeNode three = new TreeNode(3);
TreeNode four = new TreeNode(4);
TreeNode five = new TreeNode(5);
TreeNode six = new TreeNode(6);
TreeNode seven = new TreeNode(7);
TreeNode eight = new TreeNode(8);
TreeNode nine = new TreeNode(9);
TreeNode ten = new TreeNode(10);
root.left = null;
root.right = two;
two.left = three;
three.left = four;
four.right = five;
five.right = six;
six.left = seven;
seven.left = eight;
eight.right = nine;
nine.right = ten;
String serializedStr = new SerializeDeserializeBinaryTree().serialize(root);
TreeNode result = new SerializeDeserializeBinaryTree().deserialize(serializedStr);
}
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
if (root == null) return null;
List<String> list = new ArrayList<>();
encode(root, list);
StringBuilder sb = new StringBuilder();
sb.append(list.get(0));
for (int i = 1, l = list.size(); i < l; i++) {
sb.append(",").append(list.get(i));
}
return sb.toString();
}
private void encode(TreeNode root, List<String> list) {
if (root == null) list.add(NULL);
else {
list.add(String.valueOf(root.val));
encode(root.left, list);
encode(root.right, list);
}
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
if (data == null || data.isEmpty()) return null;
StringTokenizer st = new StringTokenizer(data, ",");
Queue<String> queue = new ArrayDeque<>();
while (st.hasMoreTokens())
queue.offer(st.nextToken());
return decode(queue);
}
private TreeNode decode(Queue<String> queue) {
String node = queue.poll();
if (node.equals(NULL))
return null;
TreeNode root = new TreeNode(Integer.parseInt(node));
root.left = decode(queue);
root.right = decode(queue);
return root;
}
}