快速读写模板

本文介绍了一种在C++中实现快速输入输出的方法,包括使用inline关键字定义内联函数来提高读写效率,避免标准输入输出流的缓冲区同步开销。通过使用isdigit和isdigit函数判断字符是否为数字,实现高效读取整数,以及采用递归方式输出整数,减少输出操作的时间复杂度。
摘要由CSDN通过智能技术生成
#include <stdio.h>
#include <ctype.h>

//快速读
inline int read() {
    int num=0, w=0;
    char ch=0;
    while (!isdigit(ch)) {
        w|=ch=='-';
        ch = getchar();
    }
    while (isdigit(ch)) {
        num = (num<<3) + (num<<1) + (ch^48);
        ch = getchar();
    }
    return w? -num: num;
}

//快速写
inline void write(int x)
{
    if(x<0) {
        putchar('-');
        x = -x;
    }
    if(x>9) write(x / 10);
    putchar(x % 10 + '0');
}


int main(){
    int t;
    t = read();     //读入到t中
    write(t);       //输出t
    putchar('\n');
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值