快速读模板
Posted bigtom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速读模板相关的知识,希望对你有一定的参考价值。
不能与其它输入流混用
1 inline char getChar() { 2 static char str[300000]; 3 static int head = 0, tail = 0; 4 if (head == tail) { 5 tail = fread(str, 1, 300000, stdin); 6 head = 0; 7 } 8 return str[head++]; 9 } 10 inline int get_int() { 11 int res = 0; char c = getChar(); 12 while (!isdigit(c)) c = getChar(); 13 while (isdigit(c)) res = res * 10 + c - ‘0‘, c = getChar(); 14 return res; 15 }
以上是关于快速读模板的主要内容,如果未能解决你的问题,请参考以下文章