-
Notifications
You must be signed in to change notification settings - Fork 0
/
MetodosPesquisar.java
52 lines (49 loc) · 1.76 KB
/
MetodosPesquisar.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
import java.io.FileWriter;
import java.io.IOException;
import java.util.AbstractList;
import java.util.Map;
import java.util.Set;
public class MetodosPesquisar {
public static String[] nomesPesquisa = {"Lisbon", "NASA", "Kyunghee",
"Konkuk", "Sogang", "momentarily", "rubella", "vaccinations",
"government", "Authorities"};
public static void escreverEstatisticas(Long tempo) {
try (FileWriter writer = new FileWriter("tempo.txt",true)) {
writer.write(tempo + " ");
writer.close();
}
catch(IOException e) {
System.out.println("Erro");
}
}
public static void pesquisar(AbstractList<String> a) {
long inicio = System.nanoTime();
for (String s : nomesPesquisa) {
a.contains(s);
}
long fim = System.nanoTime();
long tempoDeExecucao = fim - inicio;
System.out.println(tempoDeExecucao);
escreverEstatisticas(tempoDeExecucao);
}
public static void pesquisar(Set<String> set) {
long inicio = System.nanoTime();
for (String s : nomesPesquisa) {
set.contains(s);
}
long fim = System.nanoTime();
long tempoDeExecucao = fim - inicio;
System.out.println(tempoDeExecucao);
escreverEstatisticas(tempoDeExecucao);
}
public static void pesquisar(Map<String,Integer> map) {
long inicio = System.nanoTime();
for (String s : nomesPesquisa) {
map.get(s);
}
long fim = System.nanoTime();
long tempoDeExecucao = fim - inicio;
System.out.println(tempoDeExecucao);
escreverEstatisticas(tempoDeExecucao);
}
}