STL-set

STL-set

定义

template < class T,                       // set::key_type/value_type
           class Compare = less<T>,       // set::key_compare/value_compare
           class Alloc = allocator<T>     // set::allocator_type
           > class set;

构造

// 默认
explicit set (const key_compare& comp = key_compare(),
              const allocator_type& alloc = allocator_type());

// 区间构造
template <class InputIterator>
  set (InputIterator first, InputIterator last,
       const key_compare& comp = key_compare(),
       const allocator_type& alloc = allocator_type());

// 拷贝构造
set (const set& x);

迭代器

iterator begin();
const_iterator begin() const;

反向迭代器

reverse_iterator rbegin();
const_reverse_iterator rbegin() const;

C++11 cbegin()

const_iterator cbegin() const noexcept;

插入

// 单个元素插入
pair<iterator,bool> insert (const value_type& val);

//
iterator insert (iterator position, const value_type& val);

// 区间插入
template <class InputIterator>
void insert (InputIterator first, InputIterator last);

删除

// 根据迭代器删除
void erase (iterator position);

// 根据值删除
size_type erase (const value_type& val);

// 根据迭代器区间删除
void erase (iterator first, iterator last);

查找

iterator find (const value_type& val) const;

判断元素是否存在

size_type count (const value_type& val) const;

在 multiset 中用来统计指定元素的个数

#include <iostream>
#include <set>

using namespace std;

template<class container>
void printContainer(container& s)
{
    typename container::const_iterator it = s.begin();
    while(it != s.end())
    {
        cout << *it << " ";
        ++it;
    }
    cout << endl;
}

bool funcmp(int l, int r)
{
    return l < r;
}

struct classcomp
{
    bool operator() (const int& l, const int& r) const
    {
        return l < r;
    }
};

void TestSet01()
{
    // 构造
    set<int> first;
    int arr[] = {1, 3, 5, 7, 9};
    set<int> second(arr, arr + sizeof(arr)/sizeof(arr[0])); // 通过数组构造
    set<int> third(second.begin(), second.end());
    set<int> fourth(third);
    printContainer(third);


    // 插入
    first.insert(2);
    first.insert(4);
    first.insert(6);
    first.insert(8);
    printContainer(first);
    cout << "插入相同元素之前的大小: " << first.size() << endl;
    first.insert(6); // set 无法插入相同的 val
    printContainer(first);
    cout << "插入相同元素之后的大小: " << first.size() << endl;
    first.insert(arr, arr+4); // 将 arr[0] ~ arr[3] 的元素插入
    printContainer(first);

    // 查找
    set<int>::iterator it;
    it = first.find(0);
    if(it != first.end())
    {
        cout << *it << endl;
    }
    else
    {
        cout << *it << endl; 
        cout << "不存在" << endl;
    }

    // it = first.lower_bound(10);
    // cout << *it << endl; 
    // it = first.upper_bound(-1);
    // cout << *it << endl; 

    typedef set<int, int>::iterator Iter;
    pair<Iter, Iter> ret = first.equal_range(5);
    cout << *ret.first << endl;
    cout << *ret.second << endl;

    // 指定比较规则 
    set<int, classcomp> fifth;

    bool(*fn_pt)(int, int) = funcmp;
    set<int, bool(*)(int, int)> sixth(fn_pt);
    sixth.insert(9);
    sixth.insert(5);
    sixth.insert(2);
    sixth.insert(7);
    printContainer(sixth);
}

void TestSet02()
{
    set<char> myset;
    myset.insert('a');
    myset.insert('b');
    myset.insert('c');
    myset.insert('d');
    set<char>::iterator it = myset.begin();
    while(it != myset.end())
    {
        cout << *it << " " ;
        ++it;
    }
    cout << endl;

    set<char>::reverse_iterator re_it = myset.rbegin();
    while(re_it != myset.rend())
    {
        cout << *re_it << " " ;
        ++re_it;
    }
    cout << endl;

    if(!myset.empty())
    {
        cout << "size: " << myset.size() << endl;
    }
    it = myset.find('a');
    if(it != myset.end())
    {
        myset.erase(it);
    }
    cout << "size: " << myset.size() << endl;

    pair<set<char>::iterator, bool> ret;
    ret = myset.insert('c');
    if(ret.second == false)
    {
        it = ret.first;
    }
    myset.insert(it, 'v');
    myset.insert(it, 'x');
    myset.insert(it, 'z');
    printContainer(myset);

    it = myset.begin();
    ++it;
    myset.erase(it);
    printContainer(myset);

    size_t num = myset.erase('v');
    cout << num << endl;

    it = myset.find('x'); 
    myset.erase(it, myset.end());

    printContainer(myset);

    if(myset.count('b') != 0)
    {
        cout << "b 存在" << endl;
    }
}

// 元素可以重复
void TestMultiSet()
{
    int arr[] = {1, 2, 2, 3, 4, 6, 7, 8, 7};
    multiset<int> mul_set(arr, arr + sizeof(arr)/sizeof(arr[0]));
    printContainer(mul_set);
    cout << "size: " << mul_set.size() << endl;
    cout << "2 的个数: " << mul_set.count(2) << endl;
}

int main()
{
    // TestSet01();
    // TestSet02();
    TestMultiSet();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值