我正在阅读使用Scanner(System.in)
的标准空格或新行分隔的一堆整数。
在Java中有更快的方法吗?
答案 0 :(得分:83)
在Java中有更快的方法吗?
是。扫描仪相当慢(至少根据我的经验)。
如果您不需要验证输入,我建议您将流包装在BufferedInputStream中,并使用类似String.split
/ Integer.parseInt
的内容。
一个小比较:
使用此代码
读取 17兆字节(4233600个数字)Scanner scanner = new Scanner(System.in);
while (scanner.hasNext())
sum += scanner.nextInt();
我的机器 3.3秒。而这个片段
BufferedReader bi = new BufferedReader(new InputStreamReader(System.in));
String line;
while ((line = bi.readLine()) != null)
for (String numStr: line.split("\\s"))
sum += Integer.parseInt(numStr);
0.7秒。
进一步搞乱代码(用line
/ String.indexOf
迭代String.substring
)你可以很容易地将它降低到0.1秒左右,但我想我已经回答了你的问题问题,我不想把它变成一些代码高尔夫。
答案 1 :(得分:3)
我创建了一个小型InputReader类,它的工作方式与Java的Scanner类似,但速度超过了许多幅度,实际上它也优于BufferedReader。这是一个条形图,显示我创建的InputReader类的性能,从标准输入读取不同类型的数据:
以下是使用InputReader类查找来自System.in的所有数字之和的两种不同方法:
int sum = 0;
InputReader in = new InputReader(System.in);
// Approach #1
try {
// Read all strings and then parse them to integers (this is much slower than the next method).
String strNum = null;
while( (strNum = in.nextString()) != null )
sum += Integer.parseInt(strNum);
} catch (IOException e) { }
// Approach #2
try {
// Read all the integers in the stream and stop once an IOException is thrown
while( true ) sum += in.nextInt();
} catch (IOException e) { }
答案 2 :(得分:3)
如果您从竞争性编程的角度询问,如果提交速度不够快,它将成为TLE。
然后,您可以检查以下方法从System.in中检索String。
我摘自Java(竞争网站)中最好的编码器之一
private String ns()
{
int b = skip();
StringBuilder sb = new StringBuilder();
while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
sb.appendCodePoint(b);
b = readByte();
}
return sb.toString();
}`
答案 3 :(得分:1)
您可以通过数字方式从System.in
读取。看看这个答案:https://stackoverflow.com/a/2698772/3307066。
我在这里复制代码(几乎没有修改过)。基本上,它读取整数,由任何不是数字的东西分隔。 (致原作者的信用。)
private static int readInt() throws IOException {
int ret = 0;
boolean dig = false;
for (int c = 0; (c = System.in.read()) != -1; ) {
if (c >= '0' && c <= '9') {
dig = true;
ret = ret * 10 + c - '0';
} else if (dig) break;
}
return ret;
}
在我的问题中,此代码约为。比使用StringTokenizer
快2倍,String.split(" ")
已经快于%run
。
(问题涉及读取100万个整数,每个整数高达100万。)
答案 4 :(得分:1)
StringTokenizer
是读取由标记分隔的字符串输入的更快方法。
检查以下示例以读取由空格分隔的整数字符串并将其存储在arraylist中,
String str = input.readLine(); //read string of integers using BufferedReader e.g. "1 2 3 4"
List<Integer> list = new ArrayList<>();
StringTokenizer st = new StringTokenizer(str, " ");
while (st.hasMoreTokens()) {
list.add(Integer.parseInt(st.nextToken()));
}
答案 5 :(得分:0)
在编程视角中,这个自定义的Scan和Print类比Java内置的Scanner和BufferedReader类更好。
import java.io.InputStream;
import java.util.InputMismatchException;
import java.io.IOException;
public class Scan
{
private byte[] buf = new byte[1024];
private int total;
private int index;
private InputStream in;
public Scan()
{
in = System.in;
}
public int scan() throws IOException
{
if(total < 0)
throw new InputMismatchException();
if(index >= total)
{
index = 0;
total = in.read(buf);
if(total <= 0)
return -1;
}
return buf[index++];
}
public int scanInt() throws IOException
{
int integer = 0;
int n = scan();
while(isWhiteSpace(n)) /* remove starting white spaces */
n = scan();
int neg = 1;
if(n == '-')
{
neg = -1;
n = scan();
}
while(!isWhiteSpace(n))
{
if(n >= '0' && n <= '9')
{
integer *= 10;
integer += n-'0';
n = scan();
}
else
throw new InputMismatchException();
}
return neg*integer;
}
public String scanString()throws IOException
{
StringBuilder sb = new StringBuilder();
int n = scan();
while(isWhiteSpace(n))
n = scan();
while(!isWhiteSpace(n))
{
sb.append((char)n);
n = scan();
}
return sb.toString();
}
public double scanDouble()throws IOException
{
double doub=0;
int n=scan();
while(isWhiteSpace(n))
n=scan();
int neg=1;
if(n=='-')
{
neg=-1;
n=scan();
}
while(!isWhiteSpace(n)&& n != '.')
{
if(n>='0'&&n<='9')
{
doub*=10;
doub+=n-'0';
n=scan();
}
else throw new InputMismatchException();
}
if(n=='.')
{
n=scan();
double temp=1;
while(!isWhiteSpace(n))
{
if(n>='0'&&n<='9')
{
temp/=10;
doub+=(n-'0')*temp;
n=scan();
}
else throw new InputMismatchException();
}
}
return doub*neg;
}
public boolean isWhiteSpace(int n)
{
if(n == ' ' || n == '\n' || n == '\r' || n == '\t' || n == -1)
return true;
return false;
}
public void close()throws IOException
{
in.close();
}
}
自定义Print类可以如下
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Print
{
private BufferedWriter bw;
public Print()
{
this.bw = new BufferedWriter(new OutputStreamWriter(System.out));
}
public void print(Object object)throws IOException
{
bw.append("" + object);
}
public void println(Object object)throws IOException
{
print(object);
bw.append("\n");
}
public void close()throws IOException
{
bw.close();
}
}
答案 6 :(得分:0)
您可以使用BufferedReader读取数据
BufferedReader inp = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(inp.readLine());
while(t-->0){
int n = Integer.parseInt(inp.readLine());
int[] arr = new int[n];
String line = inp.readLine();
String[] str = line.trim().split("\\s+");
for(int i=0;i<n;i++){
arr[i] = Integer.parseInt(str[i]);
}
对于打印,请使用StringBuffer
StringBuffer sb = new StringBuffer();
for(int i=0;i<n;i++){
sb.append(arr[i]+" ");
}
System.out.println(sb);
答案 7 :(得分:0)
这里是完整版本的快速读写器。我还使用了缓冲。
import java.io.*;
import java.util.*;
public class FastReader {
private static StringTokenizer st;
private static BufferedReader in;
private static PrintWriter pw;
public static void main(String[] args) throws IOException {
in = new BufferedReader(new InputStreamReader(System.in));
pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
st = new StringTokenizer("");
pw.close();
}
private static int nextInt() throws IOException {
return Integer.parseInt(next());
}
private static long nextLong() throws IOException {
return Long.parseLong(next());
}
private static double nextDouble() throws IOException {
return Double.parseDouble(next());
}
private static String next() throws IOException {
while(!st.hasMoreElements() || st == null){
st = new StringTokenizer(in.readLine());
}
return st.nextToken();
}
}
答案 8 :(得分:0)
一次又一次地从磁盘读取,会使扫描仪变慢。我喜欢结合使用BufferedReader和Scanner来兼顾两者。即BufferredReader的速度和扫描仪丰富而便捷的API。
Scanner scanner = new Scanner(new BufferedReader(new InputStreamReader(System.in)));