定义于头文件 <set>
template< class Key, | (1) | |
namespace pmr { template <class Key, class Compare = std::less<Key>> | (2) | (C++17 起) |
std::multiset
是含有 Key 类型对象有序集的容器。不同于 set ,它允许多个关键拥有等价的值。用关键比较函数 Compare 进行排序。搜索、插入和移除操作拥有对数复杂度。
在标准库使用比较 (Compare) 概念的每处,都用描述于比较 (Compare) 的等价关系确定等价性。不精确地说,若二个对象 a
和 b
互不比较小于对方: !comp(a, b) && !comp(b, a)
,则认为它们等价。
修改器
插入元素或结点
std::multiset<Key,Compare,Allocator>::insert
iterator insert( const value_type& value ); | (1) | |
iterator insert( value_type&& value ); | (2) | (C++11 起) |
iterator insert( iterator hint, const value_type& value ); | (3) | (C++11 前) |
iterator insert( const_iterator hint, const value_type& value ); | (C++11 起) | |
iterator insert( const_iterator hint, value_type&& value ); | (4) | (C++11 起) |
template< class InputIt > | (5) | |
void insert( std::initializer_list<value_type> ilist ); | (6) | (C++11 起) |
iterator insert(node_type&& nh); | (7) | (C++17 起) |
iterator insert(const_iterator hint, node_type&& nh); | (8) | (C++17 起) |
插入元素到容器。
1-2) 插入 value
。若容器拥有带等价关键的元素,则插入到范围上界。(C++11 起).
3-4) 插入 value
到尽可能接近,正好前于(C++11 起) hint
的位置。
5) 插入来自范围 [first, last)
的元素。
6) 插入来自 initializer_list ilist
的元素。
7) 若 nh
是空的结点把柄,则不做任何事。否则插入 nh
所占有的元素到容器并返回指向被插入元素的迭代器。若范围含有关键等价于存在于容器中的 nh.key() 的关键,则在范围结尾插入元素。若 nh
非空且 get_allocator() != nh.get_allocator() 则行为未定义。
8) 若 nh
是空的结点把柄,则不做任何事并返回尾迭代器。否则,插入 nh
所占有的元素到容器,并返回指向拥有等于 nh.key() 的关键的元素的迭代器元素被插入到尽可能接近正好先于 hint
的位置。若 nh
非空且 get_allocator() != nh.get_allocator() 则行为未定义。
没有迭代器或引用被非法化。若插入成功,则在结点把柄保有元素时获得的指向该元素的指针和引用被非法化,而在提取前获得的指向元素的指针和引用变得合法。 (C++17 起)
参数
hint | - |
| ||||
value | - | 要插入的元素值 | ||||
first, last | - | 要插入的元素范围 | ||||
ilist | - | 插入值来源的 initializer_list | ||||
nh | - | 兼容的结点把柄 | ||||
类型要求 | ||||||
- InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。 |
返回值
1-4) 返回指向被插入元素的迭代器。
5-6) (无)
7,8) 若 nh
为则为尾迭代器,否则为指向被插入元素的迭代器。
异常
1-4) 若任何操作抛出异常,则插入无效果。
本节未完成 原因:情况 5-6 |
复杂度
1-2) 与容器大小成对数, O(log(size()))
。
3-4) 若插入恰好发生在 hint 后的位置则为均摊常数,否则与容器大小成对数。 | (C++11 前) |
3-4) 若插入恰好发生在 hint 前的位置则为均摊常数,否则与容器大小成对数。 | (C++11 起) |
5-6) O(N*log(size() + N))
,其中 N 是要插入的元素数。
7) 与容器大小成对数, O(log(size()))
。
8) 若插入恰好发生在 hint 前的位置则为均摊常数,否则与容器大小成对数。
调用示例
#include <iostream>
#include <forward_list>
#include <string>
#include <iterator>
#include <algorithm>
#include <functional>
#include <time.h>
#include <set>
using namespace std;
using namespace std;
struct Cell
{
int x;
int y;
Cell() = default;
Cell(int a, int b): x(a), y(b) {}
Cell &operator +=(const Cell &cell)
{
x += cell.x;
y += cell.y;
return *this;
}
Cell &operator +(const Cell &cell)
{
x += cell.x;
y += cell.y;
return *this;
}
Cell &operator *(const Cell &cell)
{
x *= cell.x;
y *= cell.y;
return *this;
}
Cell &operator ++()
{
x += 1;
y += 1;
return *this;
}
bool operator <(const Cell &cell) const
{
if (x == cell.x)
{
return y < cell.y;
}
else
{
return x < cell.x;
}
}
bool operator >(const Cell &cell) const
{
if (x == cell.x)
{
return y > cell.y;
}
else
{
return x > cell.x;
}
}
bool operator ==(const Cell &cell) const
{
return x == cell.x && y == cell.y;
}
};
std::ostream &operator<<(std::ostream &os, const Cell &cell)
{
os << "{" << cell.x << "," << cell.y << "}";
return os;
}
int main()
{
std::cout << std::boolalpha;
std::mt19937 g{std::random_device{}()};
srand((unsigned)time(NULL));
auto generate = []()
{
int n = std::rand() % 10 + 100;
Cell cell{n, n};
return cell;
};
std::multiset<Cell> multiset1;
std::cout << "multiset1 is empty: " << multiset1.empty() << std::endl;
std::cout << std::endl;
//插入元素到容器
//1-2) 插入 value 。若容器拥有带等价关键的元素,则插入到范围上界。
multiset1.insert(generate());
std::cout << "multiset1: ";
std::copy(multiset1.begin(), multiset1.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
Cell cell = generate();
// 移动语义
multiset1.insert(std::move(cell));
std::cout << "multiset1: ";
std::copy(multiset1.begin(), multiset1.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
//3-4) 插入 value 到尽可能接近,正好前于(C++11 起) hint 的位置。
multiset1.insert(multiset1.end(), generate());
std::cout << "multiset1: ";
std::copy(multiset1.begin(), multiset1.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
multiset1.insert(multiset1.cend(), generate());
std::cout << "multiset1: ";
std::copy(multiset1.begin(), multiset1.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
// 移动语义
multiset1.insert(multiset1.cend(), std::move(cell));
std::cout << "multiset1: ";
std::copy(multiset1.begin(), multiset1.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
//5) 插入来自范围 [first, last) 的元素。
std::multiset<Cell> multiset2{generate()};
multiset2.insert(multiset1.begin(), multiset1.end());
std::cout << "multiset2: ";
std::copy(multiset2.begin(), multiset2.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
//6) 插入来自 initializer_list ilist 的元素。
std::multiset<Cell> multiset3{generate()};
multiset3.insert({generate(), generate(), generate(), generate(), generate()});
std::cout << "multiset3: ";
std::copy(multiset3.begin(), multiset3.end(), std::ostream_iterator<Cell>(std::cout, " "));
std::cout << std::endl;
return 0;
}
输出