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

更快的输入挂

时间:2018-08-12 20:15:36      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:==   temp   char   code   span   read   void   class   size   

template <class T> void read(T& x)
{
    char ch = gc(); x = 0; bool f = 1;
    while (!(0 <= ch && ch <= 9) && ch != -) ch = gc();
    if (ch == -) f = 0, ch = gc();
    while (0 <= ch && ch <= 9) x = (x << 1) + (x << 3) + ch - 0, ch = gc();
    if (!f) x = -x;
}

 

更快的输入挂

标签:==   temp   char   code   span   read   void   class   size   

原文地址:https://www.cnblogs.com/mayouyou/p/9463970.html

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