快速读模板

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 }
View Code

 

以上是关于快速读模板的主要内容,如果未能解决你的问题,请参考以下文章

前端开发工具vscode如何快速生成代码片段

vscode vue快速新建模板

vscode之快速生成vue模板

快速读模板

在vscode中快速生成vue模板

使用vscode快速建立vue模板