读入/输出优化
Posted orangee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读入/输出优化相关的知识,希望对你有一定的参考价值。
void read(int &x)
{
int f=1;x=0;char s=getchar();
while(s<‘0‘||s>‘9‘){if(s==‘-‘)f=-1;s=getchar();}
while(s>=‘0‘&&s<=‘9‘){x=x*10+s-‘0‘;s=getchar();}
x*=f;
}
void print(int x)
{
if(x<0)putchar(‘-‘),x=-x;
if(x>9)print(x/10);
putchar(x%10+‘0‘);
}
并不太想用这种技巧(但万一压线过了呢
以上是关于读入/输出优化的主要内容,如果未能解决你的问题,请参考以下文章