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

溫馨提示×

c++中怎么用map查找key是否存在

c++
小億
223
2023-12-22 22:43:17
欄目: 編程語言

在C++中,可以使用mapcount()函數或者find()函數來查找key是否存在。

使用count()函數:

#include <iostream>
#include <map>

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

    if (myMap.count(2) > 0) {
        std::cout << "Key 2 exists in the map" << std::endl;
    }
    else {
        std::cout << "Key 2 does not exist in the map" << std::endl;
    }

    return 0;
}

使用find()函數:

#include <iostream>
#include <map>

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

    if (myMap.find(2) != myMap.end()) {
        std::cout << "Key 2 exists in the map" << std::endl;
    }
    else {
        std::cout << "Key 2 does not exist in the map" << std::endl;
    }

    return 0;
}

上述兩種方法都可以判斷key是否存在于map中。count()函數返回keymap中出現的次數,而find()函數返回指向key所在位置的迭代器。如果find()函數返回的迭代器等于map.end(),則表示key不存在于map中。

0
翼城县| 徐闻县| 皋兰县| 乐山市| 共和县| 古蔺县| 荆州市| 绥中县| 七台河市| 镇江市| 静海县| 泽库县| 翁源县| 阜新市| 安多县| 隆化县| 峡江县| 鄯善县| 神池县| 宜丰县| 浦北县| 上思县| 潞西市| 新晃| 密云县| 东阳市| 瓦房店市| 南漳县| 浦县| 安福县| 本溪市| 临漳县| 都兰县| 饶平县| 六安市| 广西| 清远市| 平谷区| 平乐县| 刚察县| 包头市|