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

溫馨提示×

如何用C++實現less復雜比較

c++
小樊
83
2024-09-14 09:27:41
欄目: 編程語言

在 C++ 中,你可以通過重載 operator< 來實現復雜的比較操作。這里有一個簡單的例子,展示了如何為一個自定義結構體實現 less 比較操作:

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

struct Person {
    std::string name;
    int age;
};

// 重載 operator< 運算符
bool operator<(const Person &a, const Person &b) {
    // 先比較年齡
    if (a.age < b.age) {
        return true;
    } else if (a.age > b.age) {
        return false;
    } else {
        // 如果年齡相同,則按名字的字母順序排序
        return a.name < b.name;
    }
}

int main() {
    std::vector<Person> people = {{"Alice", 30}, {"Bob", 25}, {"Charlie", 30}};

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

    // 輸出排序后的結果
    for (const auto &person : people) {
        std::cout<< person.name << " "<< person.age<< std::endl;
    }

    return 0;
}

在這個例子中,我們定義了一個 Person 結構體,并重載了 operator< 運算符。這個運算符首先比較兩個 Person 對象的年齡,如果年齡相同,則按照名字的字母順序進行排序。然后我們使用 std::sort 函數對一個包含 Person 對象的 std::vector 進行排序,并輸出排序后的結果。

0
郁南县| 定州市| 尼勒克县| 马尔康县| 鹿泉市| 甘泉县| 浮梁县| 临清市| 万载县| 佳木斯市| 永济市| 连山| 章丘市| 崇礼县| 洪雅县| 米易县| 建昌县| 胶南市| 丹东市| 曲水县| 潞城市| 赞皇县| 丰台区| 梁河县| 和静县| 淅川县| 琼结县| 清涧县| 瓦房店市| 黄梅县| 县级市| 英吉沙县| 军事| 长沙市| 儋州市| 临武县| 南漳县| 白玉县| 将乐县| 台安县| 弥勒县|