亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
广灵县| 株洲县| 孝义市| 乐东| 通州区| 法库县| 宁海县| 宝山区| 靖宇县| 公主岭市| 开鲁县| 喀喇| 岳阳县| 丰镇市| 年辖:市辖区| 青龙| 嘉兴市| 广河县| 靖安县| 冀州市| 许昌市| 高雄市| 偏关县| 舞钢市| 宜州市| 旅游| 新竹市| 宁德市| 延长县| 阿瓦提县| 南京市| 威海市| 浠水县| 巢湖市| 民乐县| 泾阳县| 惠来县| 肇源县| 枣强县| 泸水县| 广昌县|