模板 输入输出优化
Posted hznumqf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板 输入输出优化相关的知识,希望对你有一定的参考价值。
inline int read() { char ch, c=‘ ‘; int res; while (ch = getchar(), ch < ‘0‘ || ch>‘9‘) c = ch; res = ch - 48; while (ch = getchar(), ch >= ‘0‘ && ch <= ‘9‘) res = (res << 3) + (res << 1) + ch - 48; return c == ‘-‘ ? -res : res; } void write(int x) { if (x < 0) putchar(‘-‘), x = -x; if (x > 9) write(x / 10); putchar(x % 10 + ‘0‘); return; }
inline int read() { char ch, c; int res; while (ch = getchar(), ch < ‘0‘ || ch>‘9‘) c = ch; res = ch - 48; while (ch = getchar(), ch >= ‘0‘ && ch <= ‘9‘) res = (res << 3) + (res << 1) + ch - 48; return c == ‘-‘ ? -res : res; } void write(int x) { if (x < 0) putchar(‘-‘), x = -x; if (x > 9) write(x / 10); putchar(x % 10 + ‘0‘); return; }
以上是关于模板 输入输出优化的主要内容,如果未能解决你的问题,请参考以下文章
片段(Java) | 机试题+算法思路+考点+代码解析 2023
java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段