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

溫馨提示×

C++怎么遍歷map集合

c++
小億
121
2023-12-26 17:47:57
欄目: 編程語言

在C++中,可以使用迭代器來遍歷std::map集合。以下是遍歷std::map的示例代碼:

#include <iostream>
#include <map>

int main() {
    std::map<int, std::string> myMap;
    
    // 向map中插入元素
    myMap.insert(std::make_pair(1, "apple"));
    myMap.insert(std::make_pair(2, "banana"));
    myMap.insert(std::make_pair(3, "orange"));
    
    // 使用迭代器遍歷map
    std::map<int, std::string>::iterator itr;
    for(itr = myMap.begin(); itr != myMap.end(); ++itr) {
        std::cout << "Key: " << itr->first << ", Value: " << itr->second << std::endl;
    }
    
    return 0;
}

上述代碼創建了一個std::map對象myMap并插入了三個鍵值對。然后使用迭代器itr遍歷myMap,并輸出每個鍵值對的鍵和值。

輸出結果為:

Key: 1, Value: apple
Key: 2, Value: banana
Key: 3, Value: orange

注意,std::map是有序的,鍵值對按照鍵的自然順序進行排序。如果需要按照插入順序遍歷集合,可以使用std::unordered_map代替std::map

0
平度市| 什邡市| 盘锦市| 临桂县| 苏州市| 宁海县| 贺兰县| 临安市| 谢通门县| 监利县| 威海市| 红桥区| 连州市| 长武县| 如东县| 嘉兴市| 衡东县| 梁平县| 上思县| 阿合奇县| 高雄市| 抚顺市| 当涂县| 拜泉县| 朝阳区| 高陵县| 大埔县| 西林县| 如东县| 贵州省| 小金县| 玉环县| 广宗县| 峨边| 鱼台县| 尚义县| 雅安市| 鄂州市| 定结县| 西城区| 宁德市|