※调用strcmp函数要用到#include <cstring> / #include <string.h>
例子:比较char型字符串大小,详情见算法笔记4.1.3
bool cmp (Student a,Student b){
if(a.score!=b.score)return a.score>b.score;
else return strcmp(a.id,b.id)<0;
}
※调用memset需要头文件#include <cstring>
※调用sort函数进行排序时要用到 #include <algorithm> 和using namespace std;