标签:pre char 根据 str struct code 结构 int 顺序
struct q
{
char name[20];
int num;
int score;
}x[10005];
int cmp(q x,q y)
{
if(x.num!=y.num)
return x.num>y.num;
return x.score<y.score;
}
sort(x,x+n,cmp);
标签:pre char 根据 str struct code 结构 int 顺序
原文地址:https://www.cnblogs.com/wzl19981116/p/9374693.html