加载中...
705-设计哈希集合(Design HashSet)
发表于:2021-12-03 | 分类: 简单
字数统计: 378 | 阅读时长: 2分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/design-hashset

英文原文

Design a HashSet without using any built-in hash table libraries.

Implement MyHashSet class:

  • void add(key) Inserts the value key into the HashSet.
  • bool contains(key) Returns whether the value key exists in the HashSet or not.
  • void remove(key) Removes the value key in the HashSet. If key does not exist in the HashSet, do nothing.

 

Example 1:

Input
["MyHashSet", "add", "add", "contains", "contains", "add", "contains", "remove", "contains"]
[[], [1], [2], [1], [3], [2], [2], [2], [2]]
Output
[null, null, null, true, false, null, true, null, false]

Explanation
MyHashSet myHashSet = new MyHashSet();
myHashSet.add(1);      // set = [1]
myHashSet.add(2);      // set = [1, 2]
myHashSet.contains(1); // return True
myHashSet.contains(3); // return False, (not found)
myHashSet.add(2);      // set = [1, 2]
myHashSet.contains(2); // return True
myHashSet.remove(2);   // set = [1]
myHashSet.contains(2); // return False, (already removed)

 

Constraints:

  • 0 <= key <= 106
  • At most 104 calls will be made to add, remove, and contains.

中文题目

不使用任何内建的哈希表库设计一个哈希集合(HashSet)。

实现 MyHashSet 类:

  • void add(key) 向哈希集合中插入值 key
  • bool contains(key) 返回哈希集合中是否存在这个值 key
  • void remove(key) 将给定值 key 从哈希集合中删除。如果哈希集合中没有这个值,什么也不做。
 

示例:

输入:
["MyHashSet", "add", "add", "contains", "contains", "add", "contains", "remove", "contains"]
[[], [1], [2], [1], [3], [2], [2], [2], [2]]
输出:
[null, null, null, true, false, null, true, null, false]

解释:
MyHashSet myHashSet = new MyHashSet();
myHashSet.add(1);      // set = [1]
myHashSet.add(2);      // set = [1, 2]
myHashSet.contains(1); // 返回 True
myHashSet.contains(3); // 返回 False ,(未找到)
myHashSet.add(2);      // set = [1, 2]
myHashSet.contains(2); // 返回 True
myHashSet.remove(2);   // set = [1]
myHashSet.contains(2); // 返回 False ,(已移除)

 

提示:

  • 0 <= key <= 106
  • 最多调用 104addremovecontains

 

进阶:你可以不使用内建的哈希集合库解决此问题吗?

通过代码

高赞题解

简单数组

image.png

由于题目给出了 0 <= key <= 10^6 数据范围,同时限定了 key 只能是 int。

我们可以直接使用一个 boolean 数组记录某个 key 是否存在,key 直接对应 boolean 的下标。

代码:

[]
class MyHashSet { boolean[] nodes = new boolean[1000009]; public void add(int key) { nodes[key] = true; } public void remove(int key) { nodes[key] = false; } public boolean contains(int key) { return nodes[key]; } }
  • 时间复杂度:$O(1)$
  • 空间复杂度:$O(1)$

链表

image.png

我们利用「链表」来构建 Set,这也是工程上最简单的一种实现方式。

代码:

[]
class MyHashSet { // 由于使用的是「链表」,这个值可以取得很小 Node[] nodes = new Node[10009]; public void add(int key) { // 根据 key 获取哈希桶的位置 int idx = getIndex(key); // 判断链表中是否已经存在 Node loc = nodes[idx], tmp = loc; if (loc != null) { Node prev = null; while (tmp != null) { if (tmp.key == key) { return; } prev = tmp; tmp = tmp.next; } tmp = prev; } Node node = new Node(key); // 头插法 // node.next = loc; // nodes[idx] = node; // 尾插法 if (tmp != null) { tmp.next = node; } else { nodes[idx] = node; } } public void remove(int key) { int idx = getIndex(key); Node loc = nodes[idx]; if (loc != null) { Node prev = null; while (loc != null) { if (loc.key == key) { if (prev != null) { prev.next = loc.next; } else { nodes[idx] = loc.next; } return; } prev = loc; loc = loc.next; } } } public boolean contains(int key) { int idx = getIndex(key); Node loc = nodes[idx]; if (loc != null) { while (loc != null) { if (loc.key == key) { return true; } loc = loc.next; } } return false; } static class Node { private int key; private Node next; private Node(int key) { this.key = key; } } int getIndex(int key) { // 因为 nodes 的长度只有 10009,对应的十进制的 10011100011001(总长度为 32 位,其余高位都是 0) // 为了让 key 对应的 hash 高位也参与运算,这里对 hashCode 进行右移异或 // 使得 hashCode 的高位随机性和低位随机性都能体现在低 16 位中 int hash = Integer.hashCode(key); hash ^= (hash >>> 16); return hash % nodes.length; } }
  • 时间复杂度:由于没有扩容的逻辑,最坏情况下复杂度为 $O(n)$,一般情况下复杂度为 $O(1)$
  • 空间复杂度:$O(1)$

分桶数组

image.png

事实上我们还可以实现一个类似「bitmap」数据结构。

使用 int 中的每一位代表一个位置。

由于数据范围为 0 <= key <= 10^6,我们最多需要的 int 数量不会超过 40000。

因此我们可以建立一个 buckets 数组,数组装载的 int 类型数值。

  • 先对 key 进行 key / 32,确定当前 key 所在桶的位置(大概位置)
  • 再对 key 进行 key % 32,确定当前 key 所在桶中的哪一位(精确位置)

根据位运算对「精确位置」进行修改。

代码:

[]
class MyHashSet { int[] bs = new int[40000]; public void add(int key) { int bucketIdx = key / 32; int bitIdx = key % 32; setVal(bucketIdx, bitIdx, true); } public void remove(int key) { int bucketIdx = key / 32; int bitIdx = key % 32; setVal(bucketIdx, bitIdx, false); } public boolean contains(int key) { int bucketIdx = key / 32; int bitIdx = key % 32; return getVal(bucketIdx, bitIdx); } void setVal(int bucket, int loc, boolean val) { if (val) { int u = bs[bucket] | (1 << loc); bs[bucket] = u; } else { int u = bs[bucket] & ~(1 << loc); bs[bucket] = u; } } boolean getVal(int bucket, int loc) { int u = (bs[bucket] >> loc) & 1; return u == 1; } }
  • 时间复杂度:$O(1)$
  • 空间复杂度:$O(1)$

最后

如果有帮助到你,请给题解点个赞和收藏,让更多的人看到 ~ (“▔□▔)/

如有不理解的地方,欢迎你在评论区给我留言,我都会逐一回复 ~

也欢迎你 关注我 和 加入我们的「组队打卡」小群 ,提供写「证明」&「思路」的高质量题解

统计信息

通过次数 提交次数 AC比率
71015 110375 64.3%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言

相似题目

题目 难度
设计哈希映射 简单
上一篇:
799-香槟塔(Champagne Tower)
下一篇:
706-设计哈希映射(Design HashMap)
本文目录
本文目录