forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_449.java
196 lines (170 loc) · 6.86 KB
/
_449.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
public class _449 {
public static class Solution1 {
/**
* Preorder
* Reference: https://discuss.leetcode.com/topic/97922/pre-or-post-order-with-only-keeping-one-bound-beat-98-and-95
*/
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
if (root == null) {
return null;
}
StringBuilder stringBuilder = new StringBuilder();
return serialize(root, stringBuilder);
}
private String serialize(TreeNode root, StringBuilder stringBuilder) {
if (root == null) {
return null;
}
stringBuilder.append(root.val).append(" ");
serialize(root.left, stringBuilder);
serialize(root.right, stringBuilder);
return stringBuilder.toString();
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
if (data == null || data.length() == 0) {
return null;
}
String[] values = data.split(" ");
int[] index = new int[]{0};/**TODO: Why must use an int array, instead of just an int?*/
return deserialize(values, index, Integer.MAX_VALUE);
}
private TreeNode deserialize(String[] values, int[] index, int maxValue) {
if (index[0] >= values.length || Integer.valueOf(values[index[0]]) >= maxValue) {
return null;
}
TreeNode root = new TreeNode(Integer.valueOf(values[index[0]++]));
root.left = deserialize(values, index, root.val);
root.right = deserialize(values, index, maxValue);
return root;
}
}
public static class Solution2 {
/**
* Postorder
* Reference: https://discuss.leetcode.com/topic/97922/pre-or-post-order-with-only-keeping-one-bound-beat-98-and-95
*/
public String serialize(TreeNode root) {
if (root == null) {
return null;
}
StringBuilder sb = new StringBuilder();
return serialize(root, sb);
}
private String serialize(TreeNode root, StringBuilder sb) {
if (root == null) {
return null;
}
serialize(root.left, sb);
serialize(root.right, sb);
sb.append(root.val).append(" ");
return sb.toString();
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
if (data == null || data.length() == 0) {
return null;
}
String[] values = data.split(" ");
int[] index = new int[]{values.length - 1};/**TODO: This is not just one element any more like in the preorder solution above*/
return deserialize(values, index, Integer.MIN_VALUE);
}
private TreeNode deserialize(String[] values, int[] index, int minValue) {
if (index[0] < 0 || Integer.valueOf(values[index[0]]) < minValue) {
return null;
}
TreeNode root = new TreeNode(Integer.valueOf(values[index[0]--]));
root.right = deserialize(values, index, root.val);
root.left = deserialize(values, index, minValue);
return root;
}
}
public static class Solution3 {
/**
* This is a generic solution that applies to both BT and BST. And also the easiest to follow.
*/
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
Queue<TreeNode> queue = new LinkedList<>();
StringBuilder stringBuilder = new StringBuilder();
if (root == null) {
return stringBuilder.toString();
}
queue.offer(root);
while (!queue.isEmpty()) {
int size = queue.size();
for (int i = 0; i < size; i++) {
TreeNode curr = queue.poll();
if (curr == null) {
stringBuilder.append("# ");
} else {
stringBuilder.append(curr.val + " ");
queue.offer(curr.left);
queue.offer(curr.right);
}
}
}
return stringBuilder.toString();
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
if (data == null || data.length() == 0) {
return null;
}
String[] nodes = data.split(" ");
TreeNode root = new TreeNode(Integer.valueOf(nodes[0]));
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
for (int i = 1; i < nodes.length; i++) {
TreeNode curr = queue.poll();
if (!nodes[i].equals("#")) {
curr.left = new TreeNode(Integer.valueOf(nodes[i]));
queue.offer(curr.left);
}
if (!nodes[++i].equals("#")) {
curr.right = new TreeNode(Integer.valueOf(nodes[i]));
queue.offer(curr.right);
}
}
return root;
}
}
public static class Solution4 {
private static final String NULL_SYMBOL = "X";
private static final String DELIMITER = ",";
// Encodes a tree to a single string.
public String serialize(TreeNode root) {
// If we have a null symbol, encode it to NULL_SYMBOL
if (root == null) {
return NULL_SYMBOL + DELIMITER;
}
String leftSubtree = serialize(root.left);
String rightSubtree = serialize(root.right);
return root.val + DELIMITER + leftSubtree + rightSubtree;
}
// Decodes your encoded data to tree.
public TreeNode deserialize(String data) {
Queue<String> nodesLeftToSerialize = new LinkedList<>();
nodesLeftToSerialize.addAll(Arrays.asList(data.split(DELIMITER)));
return deserializeHelper(nodesLeftToSerialize);
}
private TreeNode deserializeHelper(Queue<String> nodesLeft) {
// remove the node
String nodeLeftToSerialize = nodesLeft.poll();
// base case
if (nodeLeftToSerialize.equals(NULL_SYMBOL)) {
return null;
}
TreeNode newNode = new TreeNode(Integer.valueOf(nodeLeftToSerialize));
newNode.left = deserializeHelper(nodesLeft);
newNode.right = deserializeHelper(nodesLeft);
return newNode;
}
}
}