-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test.java
29 lines (21 loc) · 980 Bytes
/
Test.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
package ParcoursDeGrapheSansMemoireUneGeneration;
import java.util.LinkedList;
import util.LockfreeQueue;
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
//Test pour un personnage avec moins d'hyperliens sur sa page : ("http://starwars.wikia.com/wiki/Athgar_Heece")
long startTime = System.currentTimeMillis();
// Changer le nombre, ici "11", derrièregetLinks dans la ligne ci-dessous. Voir la classe LinkExctract pour des détails sur chacune des fonctions getLinksX.
LockfreeQueue<String> res = LinkExtract.getLinks11("http://starwars.wikia.com/wiki/Yoda",400,30); //ici sont utilisés 400 threads reader et 30 threads vérificateurs qui sont des valeurs efficaces
int c =0;
while(!res.isEmpty()){
System.out.println(res.take());
c=c+1;
}
long endTime = System.currentTimeMillis();
long totalTime = endTime - startTime;
System.out.println(totalTime);
System.out.print(c);
}
}