91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 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

評論

共有 條評論