数据结构与算法题目总结

文章目录

  • 1.输入输出控制
  • 2.字符串控制
  • 3.其他

1.输入输出控制

  • 大量输入输出导致超时,可以试试把 cin 和 cout 换成 scanf 和 printf
  • 读入无停止标识符的字符串
//输入 x a abc .. 
string str;
while (cin >> str){
	//else
}
  • 保留小数
#include 
cout.set(ios::fixed);cout.precision(n) //保留n位小数
cout.precision(n)					  //保留n位有效数字

2.字符串控制

  • 字符串转数字:stoi/stod/atof

3.其他

  • 万能头文件 #include

你可能感兴趣的:(学习笔记,PAT)