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

cin.tie与sync_with_stdio加速输入输出

时间:2018-06-06 23:45:28      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:and   std   return   []   http   代码   tput   highlight   cin   

在LeetCode上练习习题的时候每次AC之后都会去看别人的代码,几乎每次都能遇到cin.tie与sync_with_stdio。类似这样:

static auto x = [](){
    std::ios::sync_with_stdio(false);
    std::cin.tie(NULL);
    return 0;
}();
class Solution {
public:
    string reverseString(string s) {
        reverse(s.begin(), s.end());
        return s;
    }
};

  代码中加粗的那部分,开始没在意,后头我就照着主体函数写,然而还是没有原答案快,我很纳闷,知乎搜索一下之后我也感叹我是怎么活到现在的。

在此不解释,一1切看原文,这是转载的别人的:http://www.hankcs.com/program/cpp/cin-tie-with-sync_with_stdio-acceleration-input-and-output.html

感谢前人的分享!

cin.tie与sync_with_stdio加速输入输出

标签:and   std   return   []   http   代码   tput   highlight   cin   

原文地址:https://www.cnblogs.com/love-DanDan/p/9147803.html

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