标签:als 复杂 iostream stat 缓冲 syn ati stream style
1 static auto _=[]() 2 { 3 ios::sync_with_stdio(false); 4 cin.tie(0); 5 return 0; 6 }();
cin,cout效率低是因为他们要将输入输出的数据先存入缓冲区后,才进行输入输出。本代码的作用就是去除掉iostream的输入输出缓存的步骤,提高效率。
标签:als 复杂 iostream stat 缓冲 syn ati stream style
原文地址:https://www.cnblogs.com/Aiahtwo/p/10506722.html