中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++對象數組怎么排序

c++
小億
104
2023-12-26 18:12:00
欄目: 編程語言

在C++中,可以使用標準庫函數std::sort來對對象數組進行排序。但是在使用std::sort之前,需要定義比較函數或者重載對象的運算符,以便指定對象的排序規則。

以下是一個示例,展示了如何對存儲Student對象的數組按照學生年齡進行排序。

#include <algorithm>
#include <iostream>
#include <vector>

class Student {
public:
    std::string name;
    int age;

    Student(std::string name, int age) : name(name), age(age){}

    // 重載運算符<,用于指定排序規則
    bool operator<(const Student& other) const {
        return age < other.age;
    }
};

int main() {
    std::vector<Student> students;
    students.push_back(Student("Alice", 20));
    students.push_back(Student("Bob", 19));
    students.push_back(Student("Charlie", 22));

    // 使用std::sort對students數組進行排序
    std::sort(students.begin(), students.end());

    // 打印排序后的結果
    for (const auto& student : students) {
        std::cout << "Name: " << student.name << ", Age: " << student.age << std::endl;
    }

    return 0;
}

以上代碼中,我們定義了一個Student類,其中包含nameage兩個成員變量。為了實現對象數組的排序,我們重載了<運算符,指定了按照學生年齡進行比較的規則。

main函數中,我們將Student對象存儲在std::vector中,并使用std::sort對數組進行排序。最后,我們遍歷排序后的數組并打印結果。輸出結果將會按照學生的年齡從小到大進行排序。

0
永兴县| 开封县| 文水县| 麻江县| 顺义区| 祁连县| 潍坊市| 双鸭山市| 太保市| 淅川县| 克山县| 珲春市| 鸡东县| 高州市| 出国| 黑龙江省| 南城县| 清水县| 体育| 辽源市| 辽宁省| 安化县| 宁乡县| 巩义市| 凤山县| 玉门市| 昌都县| 卢龙县| 永平县| 江阴市| 临邑县| 鸡泽县| 绍兴县| 防城港市| 西乌珠穆沁旗| 五指山市| 区。| 泰顺县| 禄丰县| 仙居县| 丰城市|