在线文档教程
C++
容器 | Containers

std::unordered_multimap::reserve

STD:无序[医]多次::储备金

void reserve( size_type count (since C++11)

将桶数设置为至少容纳所需的数量。count元素而不超过最大负载因子并重新散列容器,也就是说,考虑到容器的总数量发生了变化,将元素放入适当的桶中。有效呼叫rehash(std::ceil(count / max_load_factor()))...

参数

count-new capacity of the container

返回值

%280%29

复杂性

平均情况线性在容器的大小,最坏的情况是二次型的。

另见

rehashreserves at least the specified number of buckets.This regenerates the hash table. (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/container/unorder[医]多边/储备