热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

数据快速读取cinscanfgetchar比较(包含freopenstd::ios::sync_with_stdio详解程序执行时间)

intread(){charcgetchar();intnum0;for(;!isdigit(c);cgetchar());for(;isdigit(
int read()
{
    char c=getchar();int num=0;
    for(;!isdigit(c);c=getchar());
    for(;isdigit(c);c=getchar())
        num=num*10+c-'0';
    return num;
}

 考虑负数:

inline int read()
{
    char ch=getchar(); 
    int x=0,f=1;
    while((ch>'9'||ch<'0')&&ch!='-')
        ch=getchar();
    if(ch=='-')
    {
        f=-1;
        ch=getchar();
    }
    while('0'<=ch&&ch<='9')
    {
        x=x*10+ch-'0';
        ch=getchar();
    }
    return x*f;
}

 关于cin,scanf,getchar 速度的比较可参考:

  https://blog.csdn.net/qq_33248299/article/details/52144485


推荐阅读
author-avatar
小青年
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有