91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ set遍歷 能按降序嗎

c++
小樊
81
2024-11-26 02:45:02
欄目: 編程語言

當然可以!在C++中,你可以使用std::set的迭代器來遍歷集合,并使用std::greater來實現降序遍歷

#include <iostream>
#include <set>
#include <algorithm>

int main() {
    std::set<int> my_set = {5, 1, 9, 3, 7};

    // 使用 std::greater<int> 作為比較函數對象,實現降序遍歷
    for (auto it = my_set.rbegin(); it != my_set.rend(); ++it) {
        std::cout << *it << " ";
    }

    return 0;
}

在這個示例中,我們使用了rbegin()rend()方法來獲取反向迭代器,然后使用std::greater<int>作為比較函數對象來實現降序遍歷。輸出結果將是:

9 7 5 3 1

0
贵阳市| 福清市| 大同市| 甘泉县| 铁岭县| 长沙市| 湖南省| 齐河县| 无棣县| 巢湖市| 桐乡市| 漾濞| 天气| 南雄市| 陵川县| 东乌珠穆沁旗| 玛沁县| 淅川县| 平谷区| 蒙自县| 牙克石市| 龙胜| 奉化市| 驻马店市| 哈密市| 西藏| 博乐市| 宜兰县| 滦平县| 定襄县| 南靖县| 平潭县| 宁城县| 万荣县| 霍州市| 卢龙县| 景洪市| 武平县| 历史| 得荣县| 郸城县|