定义于头文件
template class Key, class T, class Hash = std::hash class KeyEqual = std::equal_to class Allocator = std::allocator > > class unordered_multimap; |
(1) | (C++11 起) |
namespace pmr {
template } |
(2) | (C++17 起) |
unordered_multimap 是无序关联容器,支持等价的关键(一个 unordered_multimap 可含有每个关键值的多个副本)和将关键与另一类型的值关联。 unordered_multimap 类支持向前迭代器。搜索、插入和移除拥有平均常数时间复杂度。
元素在内部不以任何特定顺序排序,而是组织到桶中。元素被放进哪个桶完全依赖于其关键的哈希。这允许到单独元素的快速访问,因为哈希一旦计算,则它指代元素被放进的准确的桶。
不要求此容器的迭代顺序稳定(故例如 std::equal 不能用于比较二个 std::unordered_multimap
),除了关键比较等价(以 key_eq() 为比较器比较相等)的每组元素在迭代顺序中组成相接的子范围,它亦可用 equal_range() 访问。
迭代器
返回指向容器第一个元素的迭代器
std::unordered_multimap::begin,
std::unordered_multimap::cbegin
iterator begin() noexcept; |
(C++11 起) | |
const_iterator begin() const noexcept; |
(C++11 起) | |
const_iterator cbegin() const noexcept; |
(C++11 起) |
返回指向容器首元素的迭代器。
若容器为空,则返回的迭代器将等于 end() 。
参数
(无)
返回值
指向首元素的迭代器。
复杂度
常数。
返回指向容器尾端的迭代器
std::unordered_multimap::end,
std::unordered_multimap::cend
iterator end() noexcept; |
(C++11 起) | |
const_iterator end() const noexcept; |
(C++11 起) | |
const_iterator cend() const noexcept; |
(C++11 起) |
返回指向容器末元素后一元素的迭代器。
此元素表现为占位符;试图访问它导致未定义行为。
参数
(无)
返回值
指向后随最后元素的迭代器。
复杂度
常数。
调用示例
#include
#include
#include
#include
#include
#include
#include
#include
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
{
return x == cell.x && y == cell.y;
}
};
struct myCompare
{
bool operator()(const int &a, const int &b)
{
return a &pCell)
{
os ()(cell.x) | std::hash()(cell.y);
// std::cout (cell, std::to_string(n));
};
std::unordered_multimap unordered_multimap1;
while (unordered_multimap1.size() >(std::cout, " "));
std::cout ::const_iterator cit =
unordered_multimap1.cbegin(); cit != unordered_multimap1.cend(); cit++)
{
std::cout ::iterator it =
unordered_multimap1.begin(); it != unordered_multimap1.end(); it++)
{
it->second = std::to_string(std::rand() % 10 + 110);
}
std::cout >(std::cout, " "));
std::cout |
输出
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net