标签:call div 缓冲区 blog 情况下 缓冲 logs har 速度
1 setvbuf(stdin, calloc(1 << 20, sizeof(char)), _IOFBF, 1 << 20); 2 setvbuf(stdout, calloc(1 << 20, sizeof(char)), _IOFBF, 1 << 20);
在数据量比较大的情况下,插入上面两行代码就可以大大加快输入输出速度。它扩大了stdin、stdout缓冲区大小。在同样大小的数据量下,减少了程序对缓冲区操作的次数。
标签:call div 缓冲区 blog 情况下 缓冲 logs har 速度
原文地址:http://www.cnblogs.com/chenhaoran-the-prophet/p/7827098.html