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

溫馨提示×

c++中unordered_map遍歷的方法是什么

c++
小億
169
2023-12-21 23:40:51
欄目: 編程語言

在C++中,可以使用迭代器來遍歷std::unordered_map。以下是一種常見的方法:

#include <iostream>
#include <unordered_map>

int main() {
    std::unordered_map<int, std::string> myMap = {
        {1, "one"},
        {2, "two"},
        {3, "three"}
    };

    // 使用迭代器遍歷unordered_map
    for (auto it = myMap.begin(); it != myMap.end(); ++it) {
        std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
    }

    return 0;
}

輸出結果:

Key: 3, Value: three
Key: 2, Value: two
Key: 1, Value: one

在上面的示例中,myMap.begin()返回一個指向unordered_map的第一個元素的迭代器,myMap.end()返回一個指向unordered_map的尾后元素(即最后一個元素之后的位置)的迭代器。我們使用for循環遍歷這些迭代器,并使用it->first訪問鍵,it->second訪問值。

0
绥德县| 中西区| 农安县| 兖州市| 攀枝花市| 汝阳县| 卓资县| 越西县| 黑龙江省| 象州县| 丁青县| 惠安县| 铜梁县| 湟源县| 云林县| 永清县| 石柱| 浪卡子县| 高邑县| 垣曲县| 西盟| 建始县| 平顶山市| 安图县| 白沙| 上蔡县| 新绛县| 涟水县| 门源| 府谷县| 治县。| 龙泉市| 澄城县| 清新县| 昌黎县| 苍山县| 乌拉特中旗| 陈巴尔虎旗| 四会市| 临夏县| 临西县|