机试指南例2.2成绩排序

题目描述

有N个学生的数据,将学生数据按成绩高低排序,如果成绩相同则按姓名字符的字母序排序,如果姓名的字母序也相同则按照学生的年龄排序,并输出N个学生排序后的信息。

输入描述:

测试数据有多组,每组输入第一行有一个整数N(N<=1000),接下来的N行包括N个学生的数据。
每个学生的数据包括姓名(长度不超过100的字符串)、年龄(整形数)、成绩(小于等于100的正数)。

输出描述:

将学生信息按成绩进行排序,成绩相同的则按姓名的字母序进行排序。
然后输出学生信息,按照如下格式:
姓名 年龄 成绩

学生姓名的字母序区分字母的大小写,如A要比a的字母序靠前(因为A的ASC码比a的ASC码要小)。

示例1

输入

3
abc 20 99
bcd 19 97
bed 20 97

输出

bcd 19 97
bed 20 97
abc 20 99

1.自定义排序规则

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<string.h>
 4 using namespace std;
 5 struct E
 6 {
 7     char name[101];
 8     int age;
 9     int score;
10 }buf[1005];
11 bool cmp(E a,E b)     //自定义排序规则
12 {
13     if(a.score!=b.score) return a.score<b.score;
14     int temp=strcmp(a.name,b.name);
15     if(temp!=0) return temp<0;
16     else return a.age<b.age;
17 }
18 int main()
19 {
20     int n;
21     while(cin>>n&&n)
22     {
23         for(int i=0;i<n;i++)
24         {
25             cin>>buf[i].name>>buf[i].age>>buf[i].score;
26         }
27         sort(buf,buf+n,cmp);
28         for(int i=0;i<n;i++)
29             cout<<buf[i].name<<" "<<buf[i].age<<" "<<buf[i].score<<endl;
30     }
31     return 0;
32 }

 2.运算符重载    //https://www.cnblogs.com/ECJTUACM-873284962/p/6771262.html

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<string.h>
 4 using namespace std;
 5 struct E
 6 {
 7     char name[101];
 8     int age;
 9     int score;
10     bool operator < (const E &b) const  //运算符重载
11     {
12         if(score!=b.score) return score<b.score;
13         int temp=strcmp(name,b.name);
14         if(temp!=0) return temp<0;
15         else return age<b.age;
16     }
17 }buf[1005];
18
19 int main()
20 {
21     int n;
22     while(cin>>n&&n)
23     {
24         for(int i=0;i<n;i++)
25         {
26             cin>>buf[i].name>>buf[i].age>>buf[i].score;
27         }
28         sort(buf,buf+n);
29         for(int i=0;i<n;i++)
30             cout<<buf[i].name<<" "<<buf[i].age<<" "<<buf[i].score<<endl;
31     }
32     return 0;
33 }

原文地址:https://www.cnblogs.com/qing123tian/p/11140557.html

时间: 2024-11-03 20:34:02

机试指南例2.2成绩排序的相关文章

机试指南例2.1排序

题目描述 对输入的n个数进行排序并输出. 输入描述:     输入的第一行包括一个整数n(1<=n<=100).     接下来的一行包括n个整数. 输出描述:     可能有多组测试数据,对于每组数据,将排序后的n个整数输出,每个数后面都有一个空格.     每组测试数据的结果占一行. 示例1 输入 4 1 4 3 2 输出 1 2 3 4 代码2.1 使用冒泡排序 #include<stdio.h> int main() { int n; int buf[100]; while

计算机考研机试指南(六) ——栈

机试指南 cha 3 栈的应用 括号匹配问题 1 #include <iostream> 2 #include <stdio.h> 3 #include <algorithm> 4 #include <queue> 5 #include <stack> 6 #include <math.h> 7 #include <string> 8 #include <string.h> 9 #include <std

机试指南第二章-经典入门-Hash的应用自解

Hash的应用: Hash即散列,不像数据结构与算法中讲的各种Hash方法和冲突处理等过多的阐述,以下主要介绍Hash在机试试题解答中的作用. 例2.5 统计同成绩学生人数 Hash解法AC代码:(一般想到的也是这种解法) #include<cstring> #include<iostream> using namespace std; int grade[105]; int main() { int n, m, index; memset(grade, 0, sizeof(gra

机试指南第二章-经典入门-查找例题自解

查找: 对于查找问题,有难有易.可能只是直接地对某个数字的查找,也可能涉及搜索等相对难度更大的算法.这里先介绍查找的基础概念和方法. 例 2.9 找 x AC代码: #include<cstring> #include<iostream> using namespace std; int num[205]; int main() { int n, m, x; memset(num, 0, sizeof(num)); while (cin >> n) { bool fla

华为机试—根据各个位的和排序

#include <iostream> #include <string> using namespace std; int sum(int x){ int sum=0; while (x!=0) { sum+=x%10; x=x/10; } return sum; } void sort1(int x[],int n){ int i,j,k; for (i=0;i<n;i++) { for (j=0;j<=i;j++) { if (x[i]<=x[j]) { k

2015华为机试—— 输入整型数组和排序标识,对其元素按照升序或降序进行排序

接口说明 原型: void sortIntegerArray(Integer[] pIntegerArray, int iSortFlag); 输入参数: Integer[] pIntegerArray:整型数组 int  iSortFlag:排序标识:0表示按升序,1表示按降序 输出参数: 无 返回值: void 这题比较简单,也没什么思路好说,直接看代码 代码如下: public final class Demo { // 功能:输入整型数组,对其元素按照升序或降序进行排序 // 输入:pI

华为机试—字符串中找出单词排序

题目: 在给定字符串中找出单词( "单词"由大写字母和小写字母字符构成,其他非字母字符视为单词的间隔,如空格.问号.数字等等:另外单个字母不算单词):找到单词后,按照长度进行降序排序,(排序时如果长度相同,则按出现的顺序进行排列),然后输出到一个新的字符串中:如果某个单词重复出现多次,则只输出一次:如果整个输入的字符串中没有找到单词,请输出空串.输出的单词之间使用一个"空格"隔开,最后一个单词后不加空格. 要求实现函数: void my_word(charinput

机试指南第六章-搜索-例题自解

枚举: 枚举是最简单也是最直白的搜索方式,它依次尝试搜索空间中所有的解,测试其是否符合条件,若符合则输出答案,否则继续测试下一组解. 例6.1 百鸡问题 #include<iostream> using namespace std; int main() { int n; while (cin >> n) { for (int x = 0; x <= 100; x++) { for (int y = 0; y <= 100 - x; y++) { int z = 100

【算法总结】二叉树(王道机试指南第三章)

我们从二叉树的遍历谈起. 众所周知,在对二叉树的遍历过程中,根据遍历每一个结点的左子树.结点本身.右子树的顺序不同可将对二叉树的遍历方法分为前序遍历.中序遍历.后序遍历.我们摒弃数据结构教科书上复杂的遍历方式,而是使用我们在上一章所重点讨论过的递归程序来简单的实现它. 假设二叉树结点由以下结构体表示: struct Node { Node *lchild;//指向其左儿子结点的指针,当其不存在左儿子时为NULL Node *rchild;//指向其右儿子结点的指针,当其不存在右儿子时为NULL