我正在寻找最经济有效的逐行读取STDIN的方法。
第一行是要测试的条件数。 以下所有行都是条件(字符串),最多包含100 000个字符。
我已经尝试了以下内容(加上4次90 000个字符的结果:
带有while循环(7255 ms)的扫描仪
Scanner sc = new Scanner(System.in);
int numberOfLines = Integer.parseInt(sc.nextLine());
long start = 0;
int i = 1;
while (i<=numberOfLines){
start = System.currentTimeMillis();
sc.nextLine();
Debug.println((System.currentTimeMillis()-start) + "ms for scanner while");
i++;
}
带有for循环(7078 ms)的扫描仪
Scanner sc = new Scanner(System.in);
int numberOfLines = Integer.parseInt(sc.nextLine());
long start = 0;
for (int i = 1; i<= numberOfLines;i++){
start = System.currentTimeMillis();
sc.nextLine();
Debug.println((System.currentTimeMillis()-start) + "ms for scanner for");
//i++;
}
带有for循环(7403 ms)的BufferedReader
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int numberOfLines = Integer.parseInt(br.readLine());
long start = 0;
for (int i = 0; i< numberOfLines;i++){
start = System.currentTimeMillis();
br.readLine();
Debug.println((System.currentTimeMillis()-start) + "ms for bufferreader for");
//i++;
}
} catch (Exception e) {
System.err.println("Error:" + e.getMessage());
}
带有while循环的BufferedReader(7461 ms)
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int numberOfLines = Integer.parseInt(br.readLine());
int i=0;
long start = 0;
while(i< numberOfLines){
start = System.currentTimeMillis();
br.readLine();
Debug.println((System.currentTimeMillis()-start) + "ms for bufferreader while");
i++;
}
} catch (Exception e) {
System.err.println("Error:" + e.getMessage());
}
在调试所花费的时间时,我注意到每次读取后所用的时间减少了。 是否可以限制初始化的字节数(fe:如果最多有100.000个字符,则限制扫描器/缓冲读取器仅初始化100 000个字符。读取后需要重新填充下一个100 000个字符)
关于此事的任何想法都非常受欢迎。
编辑:添加了每个方案的代码以及每行读取的时间。也更改了100.000到100 000以便更容易阅读。
答案 0 :(得分:5)
查看BufferedReader#readLine
内部来源。我看到了几个问题:
你可以用两件事来抓住机会: