加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c – std :: unordered_multimap的存储桶是否只包含具有等效键的

发布时间:2020-12-16 09:52:15 所属栏目:百科 来源:网络整理
导读:在www.CPlusPlus.com上,它说明了unordered_multimap的以下内容, Elements with equivalent keys are grouped together in the same bucket and in such a way that an iterator (see equal_range) can iterate through all of them. 我知道我们无法从该语句
在www.CPlusPlus.com上,它说明了unordered_multimap的以下内容,

Elements with equivalent keys are grouped together in the same bucket and in such a way that an iterator (see equal_range) can iterate through all of them.

我知道我们无法从该语句中推断出这一点,但我想知道给定的存储桶是否只包含具有等效键的元素?

解决方法

以下是唯一相关的要求:

[C++11: 23.2.5/5]: Two values k1 and k2 of type Key are considered equivalent if the container’s key_equal function object returns true when passed those values. If k1 and k2 are equivalent,the hash function shall return the same value for both. [..]

[C++11: 23.2.5/8]: The elements of an unordered associative container are organized into buckets. Keys with the same hash code appear in the same bucket. [..]

没有什么禁止使用密钥散列a的所有元素和具有密钥散列b的所有元素存储在同一个桶中.您可以使用标准库实现来判断是否使用了此事实.

没有标准的措辞来明确这一点;它是由遗漏定义的.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读