tallate / tallate.github.io

BLOG
0 stars 1 forks source link

散列容器 | Tallate #6

Open tallate opened 5 years ago

tallate commented 5 years ago

https://tallate.github.io/d2013cce.html

散列容器HashMapHashMap是使用分离链接法实现的哈希容器,使用一个大数组存储键值对,靠hash函数计算key来确定键值对的存储位置。inital capacity(初始容量)初始table大小load factor(负载系数)每个哈希槽(或者说桶)的平均存储元素个数,当存储的元素个数超过capacity * load_factor时,容器将rehash设置inital_capacity和