快读模板
Posted zhgyki
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快读模板相关的知识,希望对你有一定的参考价值。
inline void read(int &x){
char ch;
bool flag=false;
for (ch=getchar();!isdigit(ch);ch=getchar())if (ch==‘-‘) flag=true;
for (x=0;isdigit(ch);x=x*10+ch-‘0‘,ch=getchar());
x=flag?-x:x;
}
inline void write(int x){
static const int maxlen=100;
static char s[maxlen];
if (x<0) { putchar(‘-‘); x=-x;}
if(!x){ putchar(‘0‘); return; }
int len=0; for(;x;x/=10) s[len++]=x % 10+‘0‘;
for(int i=len-1;i>=0;--i) putchar(s[i]);
}
以上是关于快读模板的主要内容,如果未能解决你的问题,请参考以下文章