概述
这类题目归结于常用技巧与算法,有很鲜明的套路,重在理解其规则,通常写起来不算太复杂。
题目描述:
题目大致意思:
给出N个学生的学号,姓名和成绩,按其中的某个列,对其进行排序,在按姓名或者分数进行排列时,如果遇到了相同的数据,则按学号递增进行排序。
大致思路:
这道题相比前两道来说要简单很多,但核心思想是一样的。使用结构体来存储学生的学号,姓名和分数信息,进而用一个结构体数组来存储所有学生的信息。根据条件使用sort函数对结构体数组进行排序即可。
提交结果:
第七个测试用例差点就超过了时间限制。
提交代码如下:
#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
using namespace std;
struct Student
{
string id;
string name;
int score;
};
bool cmp1(Student stu1, Student stu2)
{
return stu1.id < stu2.id;
}
bool cmp2(Student stu1, Student stu2)
{
if (stu1.name != stu2.name)
return stu1.name < stu2.name;
else
{
return stu1.id < stu2.id;
}
}
bool cmp3(Student stu1, Student stu2)
{
if (stu1.score != stu2.score)
return stu1.score < stu2.score;
else
{
return stu1.id < stu2.id;
}
}
vector<Student> arr;
int main()
{
int n, m;
cin >> n >> m;
for (int i = 0; i < n; i++)
{
Student stu;
cin >> stu.id >> stu.name >> stu.score;
arr.push_back(stu);
}
if (m == 1)
{
sort(arr.begin(), arr.end(), cmp1);
for (int i = 0; i < n; i++)
{
cout << arr[i].id << " " << arr[i].name << " " << arr[i].score << endl;
}
}
if (m == 2)
{
sort(arr.begin(), arr.end(), cmp2);
for (int i = 0; i < n; i++)
{
cout << arr[i].id << " " << arr[i].name << " " << arr[i].score << endl;
}
}
if (m == 3)
{
sort(arr.begin(), arr.end(), cmp3);
for (int i = 0; i < n; i++)
{
cout << arr[i].id << " " << arr[i].name << " " << arr[i].score << endl;
}
}
}
本次提交后累计得分523,排名为14290。
最后
以上就是开心月亮为你收集整理的1028 List Sorting(排序)的全部内容,希望文章能够帮你解决1028 List Sorting(排序)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复