码迷,mamicode.com
首页 > 编程语言 > 详细

C++中set的使用

时间:2020-06-30 20:34:41      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:int   ons   code   容器   例程   ++   返回   去重   find   

何为set

setSTL中的一种关联容器,里面的元素根据关键字存储。set的元素都是唯一的,没有重复元素,我们可以利用这个特点进行去重的操作;

set中常用的方法

函数名 作用
clear 清除内容
insert 插入元素或节点
emplace 原位构造元素
erase 移除元素
swap 交换内容
count 返回匹配特定键的数量,可以用于判断元素是否存在
find 查找特定元素
contains 检查是否包含特定元素,C++20才有
lower_bound 返回第一个不小于给定键的元素的迭代器
upper_bound 返回第一个大于给定键的元素的迭代器

示例程序

void TestSet()
{
    // use constructor
    std::set<std::string> name;
    name.insert("Alex");
    name.insert("Alice");
    // delete duplicate element
    name.insert("Alex");
    std::cout << "size of name is " << name.size() << std::endl;

    for (std::string val : name)
        std::cout << val << "\t";
    std::cout << std::endl;

    // use erase to remove some element
    std::set<int> nums = { 1,2,3,4,5,6,7,8,9,10 };
    std::set<int> copynums(nums.find(4), nums.end());

    for (auto itr = nums.begin(); itr != nums.end(); )
    {
        if (*itr % 2 == 0)
        {
            itr = nums.erase(itr);
        }
        else
        {
            ++itr;
        }
    }

    for (const auto& val : nums)
    {
        std::cout << val << "\t";
    }
    std::cout << std::endl;

    copynums.erase(copynums.find(7), copynums.end());
    for (const auto& val : copynums)
    {
        std::cout << val << "\t";
    }
    std::cout << std::endl;
    
    std::cout << copynums.count(4) << std::endl;

    // checks if there is an element in the container and contains func exist in C++20 version
    /*if (money.contains(100))
    {
        std::cout << "100 is in this container" << std::endl;
    }
    else
    {
        std::cout << "100 is not in this container" << std::endl;
    }*/
}

程序输出结果

size of name is 2
Alex    Alice
1       3       5       7       9
4       5       6
1

C++中set的使用

标签:int   ons   code   容器   例程   ++   返回   去重   find   

原文地址:https://www.cnblogs.com/zuixime0515/p/13215644.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!