【1028】List Sorting (25 分)

简介: 【1028】List Sorting (25 分)【1028】List Sorting (25 分)
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>  
#include<map>
#include<vector>
#include<queue> 
using namespace std; 
const int maxn=100010;
struct Student{
  int id;                  //准考证号
  char name[10];   //姓名
  int score;            //分数
}stu[maxn];
bool cmp1(Student a,Student b){
  return a.id< b.id;  
}
bool cmp2(Student a,Student b){
  int s=strcmp(a.name,b.name);
  if(s) return s<0;  //按姓名字典序从小到大排序
  else return a.id<b.id;// 若姓名相同,则按准考证号从小到大排序
}
bool cmp3(Student a,Student b){
  if(a.score != b.score)  return a.score<b.score;
  else return a.id<b.id;
}
int main(){   
  int n,c;
  scanf("%d%d",&n,&c);
  for(int i=0;i<n;i++){
    scanf("%d %s %d",&stu[i].id, &stu[i].name, &stu[i].score);
  }
  if(c==1) sort(stu,stu+n, cmp1);  
  else if(c==2) sort(stu,stu+n, cmp2);  
  else if(c==3) sort(stu,stu+n, cmp3);
  for(int i=0;i<n;i++){
    printf("%06d %s %d\n",stu[i].id,stu[i].name,stu[i].score);
  }
  system("pause");
    return 0;   
}
相关文章
|
机器学习/深度学习 存储 C++
【PAT甲级 - C++题解】1052 Linked List Sorting
【PAT甲级 - C++题解】1052 Linked List Sorting
91 0
|
存储 C++
【PAT甲级 - C++题解】1028 List Sorting
【PAT甲级 - C++题解】1028 List Sorting
83 0
|
固态存储 SDN
1028 List Sorting (25)
#include #include #include #include #include using namespace std; int c; struct node{ string id, name;...
866 0
|
算法 人工智能 SDN
算法学习之路|List Sorting
Excel can sort records according to any column. Now you are supposed to imitate this function.
983 0
|
数据建模
1052. Linked List Sorting (25) 22'
#include #include #include using namespace std; /* 题目大意:对结构体进行排序 分析:建立结构体数组,按照从首地址开始的顺序(直到-1)遍历一遍整个链表, */ ...
995 0
|
7月前
|
安全 Java
java线程之List集合并发安全问题及解决方案
java线程之List集合并发安全问题及解决方案
1070 1
|
6月前
|
Java API Apache
怎么在在 Java 中对List进行分区
本文介绍了如何将列表拆分为给定大小的子列表。尽管标准Java集合API未直接支持此功能,但Guava和Apache Commons Collections提供了相关API。
|
6月前
|
运维 关系型数据库 Java
PolarDB产品使用问题之使用List或Range分区表时,Java代码是否需要进行改动
PolarDB产品使用合集涵盖了从创建与管理、数据管理、性能优化与诊断、安全与合规到生态与集成、运维与支持等全方位的功能和服务,旨在帮助企业轻松构建高可用、高性能且易于管理的数据库环境,满足不同业务场景的需求。用户可以通过阿里云控制台、API、SDK等方式便捷地使用这些功能,实现数据库的高效运维与持续优化。
|
6月前
|
存储 安全 Java
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
|
7月前
|
Java API
使用 Java 来实现两个 List 的差集操作
使用 Java 来实现两个 List 的差集操作
222 3