标签:技巧 read 快速 数字 原理 class tchar 为什么 pre
快读是一个很有用的技巧,对于某些题目的确能起到不小的作用
原理众所周知,是因为单个读入字符比读入数字快得多(别问我为什么,我也不知道)
下面呈上快读代码
int read(){ int s=0,w=1; char ch=getchar(); while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘) w=-1;ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){s=s*10+(ch-‘0‘);ch=getchar();} return s*w; }
标签:技巧 read 快速 数字 原理 class tchar 为什么 pre
原文地址:https://www.cnblogs.com/yulinss/p/11791492.html