第28480题 单选题
针对C++中Student结构体的降序排序需求,以下代码片段正确的是?

已知如下结构体定义:

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

现有一个存储Student对象的std::vector<Student> students,且已正确初始化并填充数据。要求使用std::sort将该容器中的元素按score从高到低降序排序,且已正确包含所有必要的头文件,以下代码片段中正确的是?

A
bool compare(const Student& a, const Student& b) {
    return a.score > b.score;
}
std::sort(students.begin(), students.end(), compare);
B
bool compare(const Student& a, const Student& b) {
    return a.score < b.score;
}
std::sort(students.begin(), students.end(), compare);
C
bool compare(const Student& a, const Student& b) {
    return a.score > b.score;
}
std::sort(students.begin(), students.end());
D
std::sort(students.begin(), students.end(), [](Student a, Student b) {
    return a.score < b.score;
});
程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析