xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 1.50KB
    文件類型: .cpp
    金幣: 1
    下載: 0 次
    發布日期: 2021-02-01
  • 標簽: Excel??排序??模擬??

資源簡介

						  

資源截圖

代碼片段和文件信息

#include
#include
#include?

#define?MAXID?6
#define?MAXNAME?8
#define?MAXN?100000

struct?Student?{
char?id[MAXID+1];
char?name[MAXNAME+1];
int?grade;
}?Record[MAXN];

int?ComparId(const?void?*a?const?void?*b)
{??
???return?strcmp(((const?struct?Student*)a)->id
?????????????((const?struct?Student*)b)->id);
}

int?ComparName(const?void?*a?const?void?*b)
{??
int?k?=?strcmp(((const?struct?Student*)a)->name
???????????((const?struct?Student*)b)->name);
if?(!k)?
k?=?strcmp(((const?struct?Student*)a)->id
???????????((const?struct?Student*)b)->id);
???return?k;
}

int?ComparGrade(const?void?*a?const?void?*b)
{?
int?k?=?(((const?struct?Student*)a)->grade?>?
?????((const?struct?Stud

評論

共有 條評論