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

溫馨提示×

c++ 中的 set 如何查找元素

c++
小樊
81
2024-11-29 12:02:46
欄目: 編程語言

在 C++ 中,可以使用 std::set 容器來存儲唯一元素

  1. 使用 find() 成員函數:
#include <iostream>
#include <set>

int main() {
    std::set<int> my_set = {1, 2, 3, 4, 5};

    int target = 3;
    auto it = my_set.find(target);

    if (it != my_set.end()) {
        std::cout << "Element " << target << " found in the set." << std::endl;
    } else {
        std::cout << "Element " << target << " not found in the set." << std::endl;
    }

    return 0;
}
  1. 使用 count() 成員函數:
#include <iostream>
#include <set>

int main() {
    std::set<int> my_set = {1, 2, 3, 4, 5};

    int target = 3;
    if (my_set.count(target) > 0) {
        std::cout << "Element " << target << " found in the set." << std::endl;
    } else {
        std::cout << "Element " << target << " not found in the set." << std::endl;
    }

    return 0;
}

這兩種方法都可以在 O(log n) 的時間復雜度內查找元素。find() 函數返回一個指向找到的元素的迭代器,如果未找到元素,則返回 end() 迭代器。count() 函數返回一個整數,表示元素在集合中出現的次數,如果元素不存在,則返回 0。

0
云安县| 孟连| 托里县| 许昌市| 平顶山市| 漾濞| 张家口市| 靖安县| 拜城县| 锡林浩特市| 普格县| 丰宁| 分宜县| 大竹县| 富顺县| 溆浦县| 平邑县| 宝兴县| 孝感市| 阜宁县| 绥芬河市| 西贡区| 马山县| 文水县| 白朗县| 呼伦贝尔市| 深泽县| 青州市| 黎平县| 句容市| 沂水县| 仙游县| 千阳县| 普兰店市| 古田县| 襄樊市| 甘泉县| 黄平县| 阿拉善右旗| 宜阳县| 长乐市|