1. 程式人生 > >C++關閉同步流 ios::sync_with_stdio(false);

C++關閉同步流 ios::sync_with_stdio(false);

C++關閉同步流 ios::sync_with_stdio(false);

2018年07月24日 21:29:21  閱讀數:359

轉載於 happyaaakkk

https://blog.csdn.net/aaakkk_1996/article/details/81192816

 

  1. cin和cout比scanf和printf慢很多,因為先把要輸出的東西存入緩衝區,再輸出,導致效率降低。
  2. scanf和printf在cstdio中
  3. std::ios::sync_with_stdio(false);關閉輸入輸出快取,可以加快cin和cout

還有就是,用\n而不是 endl,也可以提高速度