当前位置:网站首页>本周小贴士#136:无序容器
本周小贴士#136:无序容器
2022-07-07 15:39:00 【-飞鹤-】
TotW#136最初发表于2017年6月23日
由Matt Kulukundis创作
“有时,当材料真的很好时,你会对自己寄予期望,以使其成为最好的节目。你不只是提供规则的哈希,接着做你的工作,然后回家。”-彼得.丁拉基
长话短说,有关官方最新的推荐,请看https://abseil.io/docs/cpp/guides/container。本贴士介绍新类型,但不是规范的参考。
介绍absl:_hash_map
城镇出现了一个新的关联容器系列。他们自夸提高效率并提供早于C++17的访问。他们也对开发者提供直接控制其实现和默认的哈希函数,这对于代码库的长远发展是重要的。新代码应该优先这些类型而不是std::unordered_map。在该系统中的所有map和set有与std::unordered_map相同的API,所以很容易转换到它们。
对于每个absl::_hash_map而言,这里同样也有一个absl::_hash_set;但是,这些图表将只描述map的情况,并且我们也常提到的只是map。
absl::flat_hash_map 和 absl::flat_hash_set
这些应该是你的默认选择。他们存储他们的value_type到主数组中。因为当它们重新散时移动数据,元素无法使得指针稳定。如果你需要指针稳定或者你的值很大,请考虑使用absl::node_hash_map代替,或者 Absl::flat_has-mak<Key,std::unique_ptr>。
absl::node_hash_map 和 absl::node_hash_set
敬告:因为在重新散列像map[“a”]=map[“b”]之后将访问无效的内存,指针不稳定。
它们主数组之外分配它们的value_type(如std::unordered_map)。由于这些独立的分配,它们为存储的数据提供指针稳定性(存储在map中的对象的地址不会改变),并且空槽只需要8个字节。另外,它们能够存储既不能移动也不能复制的东西。
我们通常建议您使用 absl::flat_hash_map<K, std::unique_ptr> 而不是 absl::node_hash_map<K, V>,对于 node_hash_set 也是如此。
边栏推荐
- Matplotlib绘制三维图形
- LeetCode 403. Frog crossing the river daily
- Number of exchanges in the 9th Blue Bridge Cup finals
- [Seaborn] implementation of combined charts and multi subgraphs
- skimage学习(1)
- DevOps 的运营和商业利益指南
- A tour of grpc:03 - proto serialization / deserialization
- [Seaborn] combination chart: pairplot and jointplot
- SlashData开发者工具榜首等你而定!!!
- [source code interpretation] | source code interpretation of livelistenerbus
猜你喜欢
随机推荐
LeetCode 1986. The minimum working time to complete the task is one question per day
跟奥巴马一起画方块(Lua)
鲲鹏开发者峰会2022 | 麒麟信安携手鲲鹏共筑计算产业新生态
LeetCode 1696. Jumping game VI daily question
[video / audio data processing] Shanghai daoning brings you elecard download, trial and tutorial
LeetCode 1186. Delete once to get the sub array maximum and daily question
LeetCode 497(C#)
How to implement safety practice in software development stage
Matplotlib绘图界面设置
Biped robot controlled by Arduino
LeetCode1051(C#)
User defined view essential knowledge, Android R & D post must ask 30+ advanced interview questions
[Seaborn] implementation of combined charts and multi subgraphs
Sator launched Web3 game "satorspace" and launched hoobi
Solid function learning
The top of slashdata developer tool is up to you!!!
A tour of grpc:03 - proto serialization / deserialization
字符串 - string(Lua)
Rpcms method of obtaining articles under the specified classification
With the latest Alibaba P7 technology system, mom doesn't have to worry about me looking for a job anymore