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

溫馨提示×

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
南溪县| 边坝县| 南汇区| 清新县| 县级市| 新闻| 什邡市| 拉萨市| 淄博市| 朝阳区| 长葛市| 贵南县| 长宁区| 陆川县| 祁连县| 平乡县| 建瓯市| 黎川县| 石城县| 正阳县| 万年县| 来安县| 瑞安市| 云霄县| 河东区| 兴海县| 来宾市| 蓝山县| 江西省| 正定县| 蓝田县| 年辖:市辖区| 贵德县| 山阳县| 万宁市| 崇明县| 泾川县| 饶河县| 凭祥市| 新源县| 徐汇区|