-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path652.java
More file actions
259 lines (232 loc) · 8.13 KB
/
652.java
File metadata and controls
259 lines (232 loc) · 8.13 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
__________________________________________________________________________________________________
sample 2 ms submission
class Solution {
//Map<Integer, List<Count>> counts = new HashMap<>();
Count[] count2 = new Count[16];
int countSize = 0;
private static class Count {
int count;
TreeNode tree;
int hash;
Count next;
public Count(TreeNode tree, int count, int hash){
this.tree = tree;
this.count = count;
this.hash = hash;
}
}
public List<TreeNode> findDuplicateSubtrees(TreeNode root) {
List<TreeNode> result = new ArrayList<>();
addDuplicates(root, result);
return result;
}
/**
* Recursiverly compute a hash code and test the noe for duplicate
*/
private int addDuplicates(TreeNode root, List<TreeNode> result){
if (root == null){
return -1;
}
int hash = Integer.hashCode(root.val);
hash = hash * 31 + addDuplicates(root.left, result);
hash = hash * 31 + addDuplicates(root.right, result);
addCandidate(hash, root, result);
return hash;
}
/**
* Maintain a count of deeply equale sub trees and add the given tree to the result
* list if and only if this count is 2.
*/
private void addCandidate(int hash, TreeNode tree, List<TreeNode> result){
if (countSize > .75F * count2.length){
Count[] newCount = new Count[count2.length * 2];
for (Count b : count2){
if (b != null){
addCount(b, newCount);
}
}
count2 = newCount;
}
int optHash = hash ^ (hash >>> 16);
int bucketIdx = optHash & (count2.length - 1);
Count bucket = count2[bucketIdx];
if (bucket == null){
bucket = new Count(tree, 1, optHash);
countSize++;
count2[bucketIdx] = bucket;
} else {
while (bucket != null) {
if (deepEqual(tree, bucket.tree)){
if (++bucket.count == 2){
result.add(tree);
}
return;
}
bucket = bucket.next;
}
bucket = new Count(tree, 1, optHash);
bucket.next = count2[bucketIdx];
count2[bucketIdx] = bucket;
}
}
private void addCount(Count buck, Count[] buckets){
while (buck != null){
Count next = buck.next;
buck.next = null;
int bucketIdx = buck.hash & (buckets.length - 1);
if (buckets[bucketIdx] == null){
buckets[bucketIdx] = buck;
} else {
buck.next = buckets[bucketIdx];
buckets[bucketIdx] = buck;
}
buck = next;
}
}
private boolean deepEqual(TreeNode tree1, TreeNode tree2){
if (tree1 == null && tree2 == null){
return true;
} else if (tree1 == null || tree2 == null || tree1.val != tree2.val){
return false;
}
boolean equal = deepEqual(tree1.left, tree2.left)
&& deepEqual(tree1.right, tree2.right);
return equal;
}
}
__________________________________________________________________________________________________
sample 38464 kb submission
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
//Map<Integer, List<Count>> counts = new HashMap<>();
Count[][] count2 = new Count[16][];
int countSize = 0;
private static class Count {
int count;
TreeNode tree;
int hash;
public Count(TreeNode tree, int count, int hash){
this.tree = tree;
this.count = count;
this.hash = hash;
}
}
public List<TreeNode> findDuplicateSubtrees(TreeNode root) {
List<TreeNode> result = new ArrayList<>();
addDuplicates(root, result);
return result;
}
/**
* Recursiverly compute a hash code and test the noe for duplicate
*/
private int addDuplicates(TreeNode root, List<TreeNode> result){
if (root == null){
return -1;
}
int hash = Integer.hashCode(root.val);
hash = hash * 31 + addDuplicates(root.left, result);
hash = hash * 31 + addDuplicates(root.right, result);
addCandidate(hash, root, result);
return hash;
}
/**
* Maintain a count of deeply equale sub trees and add the given tree to the result
* list if and only if this count is 2.
*/
private void addCandidate(int hash, TreeNode tree, List<TreeNode> result){
int bucketIdx = (hash ^ (hash >>> 16)) & (count2.length - 1);
Count[] bucket = count2[bucketIdx];
if (bucket == null){
bucket = new Count[3];
if (countSize > .75 * count2.length){
Count[][] newCount = new Count[count2.length * 2][];
for (Count[] b : count2){
if (b != null){
addCount(b, newCount);
}
}
count2 = newCount;
bucketIdx = (hash ^ (hash >>> 16)) & (newCount.length - 1);
}
countSize++;
count2[bucketIdx] = bucket;
}
boolean found = false;
for (Count count : bucket){
if (count == null) break;
if (deepEqual(tree, count.tree)){
if (++count.count == 2){
result.add(tree);
}
found = true;
break;
}
}
if (!found){
Count newCount = new Count(tree, 1, hash);
for (int i = 0; i < bucket.length; i++){
if (bucket[i] == null){
bucket[i] = newCount;
newCount = null;
break;
}
}
if (newCount != null){
int oldLength = bucket.length;
bucket = Arrays.copyOf(bucket, oldLength * 2);
bucket[oldLength] = newCount;
count2[bucketIdx] = bucket;
}
}
}
private void addCount(Count[] buck, Count[][] buckets){
if (buck[1] == null){
int bucketIdx = (buck[0].hash ^ (buck[0].hash >>> 16)) & (buckets.length - 1);
if (buckets[bucketIdx] == null){
buckets[bucketIdx] = buck;
return;
}
}
for (Count cnt : buck){
if (cnt == null) break;
int bucketIdx = (cnt.hash ^ (cnt.hash >>> 16)) & (buckets.length - 1);
Count[] insBucket = buckets[bucketIdx];
if (insBucket == null){
insBucket = new Count[3];
buckets[bucketIdx] = insBucket;
}
for (int i = 0; i < insBucket.length; i++){
if (insBucket[i] == null){
insBucket[i] = cnt;
cnt = null;
break;
}
}
if (cnt != null){
int oldLength = insBucket.length;
insBucket = Arrays.copyOf(insBucket, oldLength * 2);
insBucket[oldLength] = cnt;
buckets[bucketIdx] = insBucket;
}
}
}
private boolean deepEqual(TreeNode tree1, TreeNode tree2){
if (tree1 == null && tree2 == null){
return true;
} else if (tree1 == null || tree2 == null || tree1.val != tree2.val){
return false;
}
boolean equal = deepEqual(tree1.left, tree2.left)
&& deepEqual(tree1.right, tree2.right);
return equal;
}
}
__________________________________________________________________________________________________