博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT:1028. List Sorting (25) AC
阅读量:4980 次
发布时间:2019-06-12

本文共 477 字,大约阅读时间需要 1 分钟。

#include
#include
#include
using namespace std; struct Student { char ID[10]; char name[10]; int gread; }STU[100010]; bool cmp1(Student a,Student b) { return strcmp(a.ID,b.ID)<0; } bool cmp2(Student a,Student b) { if(strcmp(a.name,b.name)!=0) return strcmp(a.name,b.name)<0; else return strcmp(a.ID,b.ID)<0; } bool cmp3(Student a,Student b) { if(a.gread!=b.gread) return a.gread

转载于:https://www.cnblogs.com/Evence/p/4307547.html

你可能感兴趣的文章
Flutter 获取控件尺寸和位置
查看>>
互联网时代的密码记忆模型
查看>>
51nod_learn_greedy_活动安排2
查看>>
物联网架构成长之路(32)-SpringBoot集成MQTT客户端
查看>>
C++中构造函数的手动和自动调用方式
查看>>
重构----学习心得
查看>>
2018-2019-2 网络对抗技术 20165236 Exp2 后门原理与实践
查看>>
读《SQL优化核心思想》:你不知道的优化技巧
查看>>
查找算法总结
查看>>
10-4. 字符串循环左移(20)
查看>>
一个js验证类
查看>>
CListUI控件的认识
查看>>
通过单元测试理解spring容器以及dubbo+zookeeper单元测试异常处理
查看>>
接口测试自动化框架搭建
查看>>
IDEA如何打包可运行jar的一个问题
查看>>
单例模式的八种写法比较
查看>>
Gatling的进阶三
查看>>
世界虐狗日——2.14
查看>>
MongoDB权威指南
查看>>
1.5坐标系
查看>>