-
Notifications
You must be signed in to change notification settings - Fork 0
/
TST.java
714 lines (667 loc) · 16.6 KB
/
TST.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
import java.util.ArrayDeque;
public class TST<Value> {
private class Node {
public Node(char ch) {
this.ch = ch;
}
public char ch;
public int size;
public Value val;
public Node left, mid, right;
}
private Node root = new Node('$');
public TST() {
}
public void put(String key, Value val) {
key = "$" + key;
Node x = getNode(key);
if (x != null && x.val != null) {
x.val = val;
return;
}
x = root;
for (int i = 0; i < key.length(); ++i) {
char ch = key.charAt(i);
++x.size;
if (ch < x.ch) {
if (x.left == null)
x.left = new Node(ch);
x = x.left;
--i;
} else if (ch > x.ch) {
if (x.right == null)
x.right = new Node(ch);
x = x.right;
--i;
} else if (i == key.length() - 1) {
x.val = val;
} else {
if (x.mid == null)
x.mid = new Node(key.charAt(i + 1));
x = x.mid;
}
}
}
public void putRecursive(String key, Value val) {
key = "$" + key;
Node x = getNode(key);
if (x != null && x.val != null) {
x.val = val;
return;
}
root = putRecursiveHelper(root, key, val, 0);
}
public Value get(String key) {
Node x = getNode("$" + key);
if (x != null)
return x.val;
return null;
}
public Value getRecursive(String key) {
Node x = getRecursiveHelper(root, "$" + key, 0);
if (x != null)
return x.val;
return null;
}
public void delete(String key) { // no $
if (!contains(key))
return;
key = "$" + key;
Node x = root;
for (int i = 0; i < key.length(); ++i) {
char ch = key.charAt(i);
--x.size;
if (ch < x.ch) {
if (x.left.size == 1) {
x.left = null;
return;
}
x = x.left;
--i;
} else if (ch > x.ch) {
if (x.right.size == 1) {
x.right = null;
return;
}
x = x.right;
--i;
} else {
if (x.mid.size == 1) {
x.mid = null;
return;
}
x = x.mid;
}
}
}
public void deleteRecursive(String key) {
if (!contains(key))
return;
root = deleteRecursiveHelper(root, "$" + key, 0);
if (root == null)
root = new Node('$');
}
public String longestPrefixOf(String s) {
int pos = goDown(s);
if (pos == -1)
return null;
return s.substring(0, pos);
}
public String longestPrefixOfRecursive(String s) {
int pos = goDownRecursive(root, -1, "$" + s, 0);
if (pos == -1)
return null;
return s.substring(0, pos);
}
private class Pair {
public Pair(Node node, String str) {
this.node = node;
this.str = str;
}
public Node node;
public String str;
}
public Iterable<String> keysThatMatch(String pattern) {
ArrayDeque<Pair> argQ = new ArrayDeque<>();
argQ.add(new Pair(root.mid, ""));
for (int i = 0; i < pattern.length(); ++i) {
ArrayDeque<Pair> tempQ = new ArrayDeque<>();
char ch = pattern.charAt(i);
while (!argQ.isEmpty()) {
Pair p = argQ.pop();
if (ch == '.') {
ArrayDeque<Node> chars = new ArrayDeque<>();
ArrayDeque<Node> dfsStack = new ArrayDeque<>();
Node crawler = p.node;
while (crawler != null) {
dfsStack.push(crawler);
crawler = crawler.left;
}
while (!dfsStack.isEmpty()) {
Node top = dfsStack.pop();
chars.add(top);
crawler = top.right;
while (crawler != null) {
dfsStack.push(crawler);
crawler = crawler.left;
}
}
for (Node node : chars)
if (i < pattern.length() - 1) {
if (node.mid != null)
tempQ.add(new Pair(node.mid, p.str + node.ch));
} else
tempQ.add(new Pair(node, p.str + node.ch));
} else {
if (ch < p.node.ch) {
if (p.node.left != null)
argQ.push(new Pair(p.node.left, p.str));
} else if (ch > p.node.ch) {
if (p.node.right != null)
argQ.push(new Pair(p.node.right, p.str));
} else if (i < pattern.length() - 1) {
if (p.node.mid != null)
tempQ.add(new Pair(p.node.mid, p.str + p.node.ch));
} else {
tempQ.add(new Pair(p.node, p.str + p.node.ch));
}
}
}
argQ = tempQ;
}
ArrayDeque<String> Q = new ArrayDeque<>();
for (Pair p : argQ) {
if (p.node.val != null) {
Q.add(p.str);
}
}
if (Q.isEmpty() && pattern.length() == 0 && root.val != null)
Q.add("");
return Q;
}
public Iterable<String> keysThatMatchRecursive(String pattern) {
ArrayDeque<String> Q = new ArrayDeque<>();
collectRecursive(root.mid, pattern, "", Q, 0);
if (Q.isEmpty() && pattern.length() == 0 && root.val != null)
Q.add("");
return Q;
}
public Iterable<String> keysWithPrefix(String prefix) {
ArrayDeque<String> Q = new ArrayDeque<>();
Node x = getNode("$" + prefix);
if (x == null)
return Q;
if (x.val != null)
Q.add(prefix);
ArrayDeque<Pair> dfsStack = new ArrayDeque<>();
Node crawler = x.mid;
while (crawler != null) {
dfsStack.push(new Pair(crawler, prefix));
crawler = crawler.left;
}
while (!dfsStack.isEmpty()) {
Pair p = dfsStack.pop();
if (p.node.val != null) {
Q.add(p.str + p.node.ch);
}
crawler = p.node.right;
while (crawler != null) {
dfsStack.push(new Pair(crawler, p.str));
crawler = crawler.left;
}
crawler = p.node.mid;
while (crawler != null) {
dfsStack.push(new Pair(crawler, p.str + p.node.ch));
crawler = crawler.left;
}
}
return Q;
}
public Iterable<String> keysWithPrefixRecursive(String prefix) {
ArrayDeque<String> Q = new ArrayDeque<>();
Node x = getNode("$" + prefix);
if (x == null)
return Q;
if (x.val != null)
Q.add(prefix);
collectRecursive(x.mid, prefix, Q);
return Q;
}
public Iterable<String> keys() {
return keysWithPrefix("");
}
public Iterable<String> keysRecursive() {
return keysWithPrefixRecursive("");
}
public String floor(String s) {
int leftNodeDepth = -1;
int prevKeyNodeDepth = -1;
Node leftNode = null;
Node prevKeyNode = null;
boolean upperLeft = false;
String key = s;
s = "$" + s;
Node x = root;
for (int i = 0; i < s.length(); ++i) {
char ch = s.charAt(i);
if (ch < x.ch) {
if (x.left == null) {
x = null;
break;
}
x = x.left;
--i;
} else if (ch > x.ch) {
leftNode = x;
leftNodeDepth = i;
upperLeft = true;
if (x.right == null) {
x = null;
break;
}
x = x.right;
--i;
} else {
if (x.left != null) {
leftNode = x.left;
leftNodeDepth = i;
upperLeft = false;
}
if (i == s.length() - 1) {
break;
}
if (x.mid == null) {
x = null;
break;
}
if (x.val != null) {
prevKeyNode = x;
prevKeyNodeDepth = i + 1;
}
x = x.mid;
}
}
if (x == null || x.val == null) {
if (prevKeyNode == null && leftNode == null) {
// System.out.println("1");
return null;
}
if (prevKeyNodeDepth - 1 >= leftNodeDepth) {
// System.out.println("2");
return s.substring(1, prevKeyNodeDepth);
} else {
if (upperLeft) {
// System.out.println("3");
return s.substring(1, leftNodeDepth) + leftNode.ch + getMax(leftNode.mid);
}
// System.out.println("4");
return s.substring(1, leftNodeDepth) + getMax(leftNode);
}
}
// System.out.println("5");
return key;
}
private String getMax(Node crawler) {
StringBuilder result = new StringBuilder();
while (crawler != null) {
while (crawler.right != null) {
crawler = crawler.right;
}
result.append(crawler.ch);
crawler = crawler.mid;
}
return result.toString();
}
public String floorRecursive(String s) {
String key = s;
s = "$" + s;
TupleFloor tuple = goDown(root, s, 0, null, -1, null, -1, false);
Node x = tuple.x;
Node leftNode = tuple.leftNode;
int leftNodeDepth = tuple.leftNodeDepth;
Node prevKeyNode = tuple.prevKeyNode;
int prevKeyNodeDepth = tuple.prevKeyNodeDepth;
boolean upperLeft = tuple.upperLeft;
if (x == null || x.val == null) {
if (prevKeyNode == null && leftNode == null) {
System.out.println("1");
return null;
}
if (prevKeyNodeDepth - 1 >= leftNodeDepth) {
System.out.println("2");
return s.substring(1, prevKeyNodeDepth);
} else {
if (upperLeft) {
System.out.println("3");
return s.substring(1, leftNodeDepth) + leftNode.ch + getMax(leftNode.mid);
}
System.out.println("4");
return s.substring(1, leftNodeDepth) + getMax(leftNode);
}
}
System.out.println("5");
return key;
}
private class TupleFloor {
public TupleFloor(Node x, Node leftNode, int leftNodeDepth, Node prevKeyNode, int prevKeyNodeDepth,
boolean upperLeft) {
this.x = x;
this.leftNode = leftNode;
this.leftNodeDepth = leftNodeDepth;
this.prevKeyNode = prevKeyNode;
this.prevKeyNodeDepth = prevKeyNodeDepth;
this.upperLeft = upperLeft;
}
public boolean upperLeft;
public Node x;
public Node leftNode;
public int leftNodeDepth;
public Node prevKeyNode;
public int prevKeyNodeDepth;
}
private TupleFloor goDown(Node x, String s, int d, Node leftNode, int leftNodeDepth, Node prevKeyNode,
int prevKeyNodeDepth, boolean upperLeft) {
if (x == null)
return new TupleFloor(null, leftNode, leftNodeDepth, prevKeyNode, prevKeyNodeDepth, upperLeft);
char ch = s.charAt(d);
if (ch > x.ch) {
leftNode = x;
leftNodeDepth = d;
upperLeft = true;
return goDown(x.right, s, d, leftNode, leftNodeDepth, prevKeyNode, prevKeyNodeDepth, true);
} else if (ch < x.ch) {
return goDown(x.left, s, d, leftNode, leftNodeDepth, prevKeyNode, prevKeyNodeDepth, upperLeft);
}
if (x.left != null) {
leftNode = x.left;
leftNodeDepth = d;
upperLeft = false;
}
if (d == s.length() - 1) {
return new TupleFloor(x, leftNode, leftNodeDepth, prevKeyNode, prevKeyNodeDepth, upperLeft);
}
if (x.val != null) {
prevKeyNode = x;
prevKeyNodeDepth = d + 1;
}
return goDown(x.mid, s, d + 1, leftNode, leftNodeDepth, prevKeyNode, prevKeyNodeDepth, upperLeft);
}
public String ceil(String s) {
Node rightNode = null;
int rightNodeDepth = -1;
String key = s;
s = "$" + s;
Node x = root;
boolean upperRight = false;
for (int i = 0; i < s.length(); ++i) {
char ch = s.charAt(i);
if (ch > x.ch) {
if (x.right == null) {
x = null;
break;
}
x = x.right;
--i;
} else if (ch < x.ch) {
rightNode = x;
rightNodeDepth = i;
upperRight = true;
if (x.left == null) {
x = null;
break;
}
x = x.left;
--i;
} else {
if (x.right != null) {
rightNodeDepth = i;
rightNode = x;
upperRight = false;
}
if (i == s.length() - 1) {
break;
}
if (x.mid == null) {
x = null;
break;
}
x = x.mid;
}
}
// don't forget about x.mid
if (x == null || x.val == null) {
if (x != null && x.mid != null) {
return s.substring(1) + getMin(x.mid);
} else if (rightNode != null) {
if (upperRight) {
return s.substring(1, rightNodeDepth) + rightNode.ch + getMin(rightNode.mid);
}
return s.substring(1, rightNodeDepth) + getMin(rightNode.right);
} else {
return null;
}
}
return key;
}
private String getMin(Node crawler) {
StringBuilder result = new StringBuilder();
while (crawler != null) {
while (crawler.left != null) {
crawler = crawler.left;
}
result.append(crawler.ch);
crawler = crawler.mid;
}
return result.toString();
}
public String ceilRecursive(String s) {
// same points as described in the floorRecursive function
String key = s;
s = "$" + s;
TupleCeil tuple = goDown(root, s, 0, null, -1, false);
Node x = tuple.x;
Node rightNode = tuple.rightNode;
int rightNodeDepth = tuple.rightNodeDepth;
boolean upperRight = tuple.upperRight;
if (x == null || x.val == null) {
if (x != null && x.mid != null) {
return s.substring(1) + getMin(x.mid);
} else if (rightNode != null) {
if (upperRight) {
return s.substring(1, rightNodeDepth) + rightNode.ch + getMin(rightNode.mid);
}
return s.substring(1, rightNodeDepth) + getMin(rightNode.right);
} else {
return null;
}
}
return key;
}
private class TupleCeil {
public TupleCeil(Node x, Node rightNode, int rightNodeDepth, boolean upperRight) {
this.x = x;
this.rightNode = rightNode;
this.rightNodeDepth = rightNodeDepth;
this.upperRight = upperRight;
}
public Node x;
public Node rightNode;
public int rightNodeDepth;
public boolean upperRight;
}
// this is for ceiling
private TupleCeil goDown(Node x, String s, int d, Node rightNode, int rightNodeDepth,
boolean upperRight) {
if (x == null)
return new TupleCeil(null, rightNode, rightNodeDepth, upperRight);
char ch = s.charAt(d);
if (ch > x.ch) {
return goDown(x.right, s, d, rightNode, rightNodeDepth, upperRight);
} else if (ch < x.ch) {
rightNode = x;
rightNodeDepth = d;
upperRight = true;
return goDown(x.left, s, d, rightNode, rightNodeDepth, upperRight);
}
if (d == s.length() - 1)
return new TupleCeil(x, rightNode, rightNodeDepth, upperRight);
if (x.right != null) {
rightNode = x;
rightNodeDepth = d;
upperRight = false;
}
return goDown(x.mid, s, d + 1, rightNode, rightNodeDepth, upperRight);
}
public int size() {
return root.size;
}
public boolean contains(String key) {
Node x = getNode("$" + key);
return x != null && x.val != null;
}
// private methods
// for prefix
private void collectRecursive(Node x, String soFar, ArrayDeque<String> Q) {
if (x == null)
return;
collectRecursive(x.left, soFar, Q);
if (x.val != null)
Q.add(soFar + x.ch);
collectRecursive(x.mid, soFar + x.ch, Q);
collectRecursive(x.right, soFar, Q);
}
// for matches
private void collectRecursive(Node x, String pattern, String soFar, ArrayDeque<String> Q, int d) {
if (x == null || d >= pattern.length())
return;
if (d == pattern.length() - 1 && x.val != null) {
Q.add(soFar + x.ch);
}
char ch = pattern.charAt(d);
if (ch == '.') {
collectRecursive(x.left, pattern, soFar, Q, d);
collectRecursive(x.mid, pattern, soFar + x.ch, Q, d + 1);
collectRecursive(x.right, pattern, soFar, Q, d);
} else {
if (ch > x.ch) {
collectRecursive(x.right, pattern, soFar, Q, d);
} else if (ch < x.ch) {
collectRecursive(x.left, pattern, soFar, Q, d);
} else {
collectRecursive(x.mid, pattern, soFar + x.ch, Q, d + 1);
}
}
}
private int goDownRecursive(Node x, int soFar, String key, int d) {
char ch = key.charAt(d);
if (ch < x.ch) {
if (x.left == null)
return soFar;
return goDownRecursive(x.left, soFar, key, d);
} else if (ch > x.ch) {
if (x.right == null)
return soFar;
return goDownRecursive(x.right, soFar, key, d);
}
if (x.val != null)
soFar = d;
if (x.mid == null)
return soFar;
else if (d == key.length() - 1)
return soFar;
return goDownRecursive(x.mid, soFar, key, d + 1);
}
private int goDown(String key) {
Node x = root;
key = "$" + key;
int count = -1;
for (int i = 0; i < key.length(); ++i) {
char ch = key.charAt(i);
if (ch < x.ch) {
if (x.left == null)
return count;
x = x.left;
--i;
} else if (ch > x.ch) {
if (x.right == null)
return count;
x = x.right;
--i;
} else {
if (x.val != null)
count = i;
if (x.mid == null)
return count;
x = x.mid;
}
}
return count;
}
private Node getRecursiveHelper(Node x, String key, int d) {
if (x == null)
return null;
char ch = key.charAt(d);
if (ch < x.ch) {
return getRecursiveHelper(x.left, key, d);
} else if (ch > x.ch) {
return getRecursiveHelper(x.right, key, d);
} else if (d < key.length() - 1) {
return getRecursiveHelper(x.mid, key, d + 1);
}
return x;
}
private Node getNode(String key) {
Node x = root;
for (int i = 0; i < key.length(); ++i) {
char ch = key.charAt(i);
if (ch < x.ch) {
if (x.left == null)
return null;
x = x.left;
--i;
} else if (ch > x.ch) {
if (x.right == null)
return null;
x = x.right;
--i;
} else if (i < key.length() - 1) {
if (x.mid == null)
return null;
x = x.mid;
}
}
return x;
}
private Node putRecursiveHelper(Node x, String key, Value val, int d) {
if (x == null)
x = new Node(key.charAt(d));
char ch = key.charAt(d);
if (ch < x.ch) {
x.left = putRecursiveHelper(x.left, key, val, d);
} else if (ch > x.ch) {
x.right = putRecursiveHelper(x.right, key, val, d);
} else {
if (d == key.length() - 1) {
x.val = val;
} else {
x.mid = putRecursiveHelper(x.mid, key, val, d + 1);
}
}
++x.size;
return x;
}
private Node deleteRecursiveHelper(Node x, String key, int d) {
if (x.size == 1)
return null;
char ch = key.charAt(d);
if (ch < x.ch) {
x.left = deleteRecursiveHelper(x.left, key, d);
} else if (ch > x.ch) {
x.right = deleteRecursiveHelper(x.right, key, d);
} else {
x.mid = deleteRecursiveHelper(x.mid, key, d + 1);
}
--x.size;
return x;
}
}