題目:查詢和排序
阿新 • • 發佈:2018-11-14
題目:查詢和排序
**題目:輸入任意(使用者,成績)序列,可以獲得成績從高到低或從低到高的排列,相同成績
都按先錄入排列在前的規則處理。**
例示:
jack 70
peter 96
Tom 70
smith 67
從高到低 成績
peter 96
jack 70
Tom 70
smith 67
從低到高
smith 67
Tom 70
jack 70
peter 96
輸入描述:
輸入多行,先輸入要排序的人的個數,然後輸入排序方法0(降序)或者1(升序)再分別輸入他們的名字和成績,以一個空格隔開
輸出描述:
按照指定方式輸出名字和成績,名字和成績之間以一個空格隔開
示例1
輸入
3
0
fang 90
yang 50
ning 70
輸出
fang 90
ning 70
實現程式碼:
#include <iostream>
using namespace std;
struct Student{
string name;
int score;
};
int main()
{
int num,t;
while(cin>>num>>t){
Student stu[num];
for(int i = 0;i<num; i++){
cin >>stu[i].name>>stu[i].score;
}
if(t == 0){//按照降序排列
for(int i = 0;i<num;i++){
for(int j = 0;j<num-i-1;j++){
if(stu[j].score<stu[j+1].score){
Student temp = stu[j];
stu[j] = stu[j+1 ];
stu[j+1] = temp;
}
}
}
}else if(t == 1){//按照升序排列
for(int i = 0;i<num;i++){
for(int j = 0;j<num-i-1;j++){
if(stu[j].score>stu[j+1].score){
Student temp = stu[j];
stu[j] = stu[j+1];
stu[j+1] = temp;
}
}
}
}else{
return 0;
}
for(int i = 0;i<num; i++){
cout<<stu[i].name<<" "<<stu[i].score<<endl;
}
}
return 0;
}