欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【模版】快速读入/输出

程序员文章站 2022-09-04 13:59:30
快速读入模版 ......

快速读入模版

template < class t > inline void read(t &x) {
    x = 0;
    char c = getchar();    
    bool f = 0;
    while (!isdigit(c)) {
        f ^= c == '-';
        c = getchar();
    }
    while (isdigit(c)) {
        x = (x << 3) + (x << 1) + (c ^ 48);
        c = getchar();
    }
    if (f)
        x = ~x + 1;
}

快速输出模版

template < class t > inline void print(t x) {
    if (x < 0) {
        putchar('-');
        x = ~x + 1;
    }
    if (x > 9)
        print(x / 10);
    putchar(48 + x % 10);
}