码迷,mamicode.com
首页 > 其他好文 > 详细

fread了解一下

时间:2018-07-25 22:01:08      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:char   r++   for   ons   head   ace   read   std   sdi   

神奇读入挂^_^

记得加头文件#include

    const int BufferSize=100*1000;
    char buffer[BufferSize],*head,*tail;
    bool not_EOF=true;
    inline char Getchar(){
        if(not_EOF and head==tail){
            int len=fread(buffer,1,BufferSize,stdin);
            not_EOF=len!=0;
            head=buffer,tail=head+len;
        }
        return not_EOF?*head++:-1;
    }
    inline int rd(){
        int x=0,s=1;
        char c=Getchar();
        for(;!isdigit(c) and not_EOF;c=Getchar()) if(c=='-') s=-1;
        for(; isdigit(c) and not_EOF;c=Getchar()) x=(x<<1)+(x<<3)+(c^48);
        return s*x;
    }
    inline void scan(char *str){
        char c=Getchar();
        for(; isspace(c) and not_EOF;c=Getchar());
        for(;!isspace(c) and not_EOF;c=Getchar()) *(str++)=c;
        *str=0;
}

fread了解一下

标签:char   r++   for   ons   head   ace   read   std   sdi   

原文地址:https://www.cnblogs.com/ezoihy/p/9368335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!