首页 > 代码库 > 提升C++输入输出性能的三个方法
提升C++输入输出性能的三个方法
做题的时候,由于数据量大,很多情况下得用scanf和printf代替cin和cout用于输入输出。难道C++不行么?
百度了一下,有三条建议用于提高C++的输入输出速度:
- At the first line in main function,add :std::ios_base::sync_with_stdio(false).which cancel theSynchronization between <iostream> and <cstdio>;
- At the second line in main function,add: std::cin.tie(0).which leads to that cin ties nothing.cin ties cout at first.
- For all endl, use ‘\n‘ or"\n" instead.
例如:
<pre name="code" class="cpp">#include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { std::ios::sync_with_stdio(false); cin.tie(0); int n,m; cin>>n>>m; cout<<n<<" "<<m<<"\n"; return 0; }
提升C++输入输出性能的三个方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。