stdio.h
printf、scanf、fprintf、fscanf、fopen、fclose、freopen、sprintf,sscanf、getchar,getc、fgetc,gets,fgets、putchar、putc、fputc,puts,fputs
math.h
sqrt、acos、floor、cos、pow
string.h
memcpy、memset,strchr,strlen,strcpy,strncpy、strcmp,strcat
stdlib.h
qsort
time.h
clock
ctype.h
isalpha,isdigit,isprint,toupper,tolower
iostream
sstream
string
getline
algorithm
min、sort、swap、unique、 lower_bound( 查找大于或等于x的第一个位置)
数组排序用sort(a,a+n)的方式调用,不定长数组用sort(v.begin(),v.end())的方式调用。