php数据结构 哈希结构,数据结构 – 稀疏哈希表背后的主要实现思想是什么? | 码农网...

本文探讨了两种哈希表实现——密集哈希表和稀疏哈希表。密集哈希表遵循传统的哈希表设计,而稀疏哈希表仅存储非空元素,通过位图来跟踪占用状态,从而节省空间。插入和查找操作在稀疏哈希表中虽较慢,但仍是常数时间复杂度。稀疏哈希表的效率与预设参数M有关,M越大,操作越慢,但空间效率更高。
摘要由CSDN通过智能技术生成

密集哈希表是您普通教科书的哈希表实现.

稀疏哈希表仅存储实际设置的元素,并分割数组.引用从 comments

执行稀疏表:

// The idea is that a table with (logically) t buckets is divided

// into t/M *groups* of M buckets each. (M is a constant set in

// GROUP_SIZE for efficiency.) Each group is stored sparsely.

// Thus, inserting into the table causes some array to grow, which is

// slow but still constant time. Lookup involves doing a

// logical-position-to-sparse-position lookup, which is also slow but

// constant time. The larger M is, the slower these operations are

// but the less overhead (slightly).

要知道数组的哪些元素被设置,一个稀疏表包括一个位图:

// To store the sparse array, we store a bitmap B, where B[i] = 1 iff

// bucket i is non-empty. Then to look up bucket i we really look up

// array[# of 1s before i in B]. This is constant time for fixed M.

因此每个元素仅产生1位的开销(限制).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值