-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExecUm.java
88 lines (72 loc) · 3.09 KB
/
ExecUm.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
package execum;
import edu.princeton.cs.algs4.In;
import edu.princeton.cs.algs4.SeparateChainingHashST;
import edu.princeton.cs.algs4.LinearProbingHashST;
import edu.princeton.cs.algs4.Stopwatch;
import edu.princeton.cs.algs4.StdOut;
/**
* @author thome pereira alves neto
*/
public class ExecUm {
//Construtor
private ExecUm() { }
//Recebe como entrada uma tabela hash "SC" de Separate Chaining,
//uma "wordList" (filtro) de palavras, e a lista "tale" a ser filtrada
//Imprime as palavras na lista ausentes no filtro
//Retorna a duração da filtragem
public static double BlackFilter(SeparateChainingHashST<String, String> SC,
In wordList, In tale){
Stopwatch watch = new Stopwatch();
while (!wordList.isEmpty()) {
String word = wordList.readString();
SC.put(word, word);
}
while (!tale.isEmpty()) {
String word = tale.readString();
if (!SC.contains(word))
StdOut.println(word);
}
double time = watch.elapsedTime();
return time;
}
//Recebe como entrada uma tabela hash "LP" de Linear Probing,
//uma "wordList" (filtro) de palavras, e a lista "tale" a ser filtrada
//Imprime as palavras na lista ausentes no filtro
//Retorna a duração da filtragem
public static double BlackFilter(LinearProbingHashST<String, String> LP,
In wordList, In tale){
Stopwatch watch = new Stopwatch();
while (!wordList.isEmpty()) {
String word = wordList.readString();
LP.put(word, word);
}
while (!tale.isEmpty()) {
String word = tale.readString();
if (!LP.contains(word))
StdOut.println(word);
}
double time = watch.elapsedTime();
return time;
}
//Recebe dois arquivos como entrada
//O livro tale.txt
//O vocabulário words.utf-8.txt
//Compara o desempenho das implementações BlackFilter
//BF SeparateChaining e BF LinearProbing
public static void main(String[] args) {
SeparateChainingHashST<String, String> SC = new SeparateChainingHashST<>();
LinearProbingHashST<String, String> LP = new LinearProbingHashST<>();
In wordList = new In(args[0]);
In tale = new In(args[1]);
//Duração de BlackFilter com SeparateChaining
double timeSC = BlackFilter(SC, wordList, tale);
//Duração de BlackFilter com LinearProbing
double timeLP = BlackFilter(LP, wordList, tale);
if (timeSC < timeLP)
System.out.printf("\nSeparateChaining foi melhor, com %2f segundos!", timeSC);
else if (timeLP < timeSC)
System.out.printf("\nLinearProbing foi melhor, com %2f segundos!", timeLP);
else
System.out.printf("\nOs dois foram iguais, com %2f segundos!", timeSC);
}
}