摘要:
字符串处理+排序排序直接用stdlib.h中的qsort()了qsort(void *base, size_t num, size_t width, int (__fileDECL *comp)(const void *, const void *));*comp函数要自己写(排序规则)int *atoi(const char *str);将字符串str转换成整型数字符串中第一个字符可以是+、-第一个字符合法后就开始做类型转换遇到(非数字字符和'\0')结束第一个字符不合法,函数默认返回0extern char *strtok(char *str, char *dilimiter);就不知道怎 阅读全文