西安交通大学915-2018-编程2

题目描述:

在这里插入图片描述

解题思路:

  • 选择一种稳定的排序算法,针对成绩关键字进行排序
  • 抽象学生类

代码实现:

#include <iostream>
#include <map>
#include <string>
#include <algorithm>
using namespace std;

struct Student {
    std::string name;
    int score;
};

namespace lsc {
    void swap(Student* arr, int i, int j) {
        Student t = arr[i];
        arr[i] = arr[j];
        arr[j] = t;
    }
}

const int N = 100;
Student stu[N];
int idx = 0; // stu的当前下标

// 选择一种稳定的排序算法实现,  冒泡 归并 插入
void BubbleSort(Student* stu, int n) {
    int i = 0;
    int j = 0;
    bool flag = false;
    for (i = 0; i < n - 1; i++) {
        flag = true;
        for (j = i + 1; j < n - 1 - i; j++) {
            if (stu[i].score < stu[j].score) {
                lsc::swap(stu, i, j);
                flag = false;
            }
        }
        if (flag) {
            break;
        } 
    }
}

int main() {
    idx = 4;
    stu[0] = {"Jack", 70};
    stu[1] = {"Petter", 96};
    stu[2] = {"Joy", 70};
    stu[3] = {"LiLi", 89};
    auto f = [] (Student s) {cout << s.name << ":" << s.score << endl;};
    for_each(stu, stu + idx, f);
    BubbleSort(stu, idx);
    cout << endl;
    for_each(stu, stu + idx, f);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值