亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
景德镇市| 镇宁| 安仁县| 隆尧县| 永安市| 汪清县| 平乐县| 弋阳县| 屏东市| 辉县市| 剑河县| 滦南县| 仙游县| 古蔺县| 双桥区| 腾冲县| 交城县| 灌南县| 铁岭县| 万年县| 武山县| 康平县| 临西县| 安康市| 舒兰市| 桐柏县| 应城市| 开江县| 嘉禾县| 商都县| 富民县| 辛集市| 延庆县| 古蔺县| 齐齐哈尔市| 宁阳县| 库尔勒市| 扶绥县| 巴林左旗| 甘洛县| 调兵山市|