Java读入优化

Posted yinku

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java读入优化相关的知识,希望对你有一定的参考价值。

之前被软院校赛卡了一波T,很亏啊。以下抄袭自Codeforces的神仙Petr。
可能得系统研究Java怎么写了?

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Solver solver = new Solver();
        solver.solve(in, out);
        out.close();
    }

    static class Solver {
        public void solve(InputReader in, PrintWriter out) {

        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }
        
        public long nextLong() {
            return Long.parseLong(next());
        }

    }
    
}

以上是关于Java读入优化的主要内容,如果未能解决你的问题,请参考以下文章

读入优化 && 输出优化

优化 C# 代码片段、ObservableCollection 和 AddRange

[读入输出优化]4.15正确的打开方式

读入优化

读入输出优化

奇技淫巧:NOIP的读入优化