C++程序员进阶的要求

对于C++程序员

需要知道为什么默认情况下cin/cout比scanf/printf慢,要知道如何优化。参考 《cin.tie与sync_with_stdio加速输入输出》一文。
[1] http://www.hankcs.com/program/cpp/cin-tie-with-sync_with_stdio-acceleration-input-and-output.html

[2] http://chino.taipei/note-2016-0311C-%E7%9A%84%E8%BC%B8%E5%87%BA%E5%85%A5cin-cout%E5%92%8Cscanf-printf%E8%AA%B0%E6%AF%94%E8%BC%83%E5%BF%AB%EF%BC%9F/

需要知道如何检测C++的运行耗时。
https://stackoverflow.com/questions/375913/how-can-i-profile-c-code-running-on-linux

你可能感兴趣的:(C++程序员进阶的要求)