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 <= 1,000,00010,000 calls will be made to add, remove, and contains.class MyHashSet:
def __init__(self):
self.data = []
def add(self, key: int) -> None:
if key not in self.data:
self.data.append(key)
def remove(self, key: int) -> None:
if key in self.data:
self.data.remove(key)
def contains(self, key: int) -> bool:
return key in self.dataclass MyHashSet:
def __init__(self):
self.data = [False] * 1000001
def add(self, key: int) -> None:
self.data[key] = True
def remove(self, key: int) -> None:
self.data[key] = False
def contains(self, key: int) -> bool:
return self.data[key]class ListNode:
def __init__(self, key: int):
self.key = key
self.next = None
class MyHashSet:
def __init__(self):
self.set = [ListNode(0) for _ in range(10**4)]
def add(self, key: int) -> None:
cur = self.set[key % len(self.set)]
while cur.next:
if cur.next.key == key:
return
cur = cur.next
cur.next = ListNode(key)
def remove(self, key: int) -> None:
cur = self.set[key % len(self.set)]
while cur.next:
if cur.next.key == key:
cur.next = cur.next.next
return
cur = cur.next
def contains(self, key: int) -> bool:
cur = self.set[key % len(self.set)]
while cur.next:
if cur.next.key == key:
return True
cur = cur.next
return FalseWhere is the number of keys, is the size of the set () and is the number of unique keys.
class TreeNode:
def __init__(self, key):
self.key = key
self.left = None
self.right = None
class BST:
def __init__(self):
self.root = None
def insert(self, root, key):
if not root:
return TreeNode(key)
if key < root.key:
root.left = self.insert(root.left, key)
elif key > root.key:
root.right = self.insert(root.right, key)
return root
def delete(self, root, key):
if not root:
return None
if key < root.key:
root.left = self.delete(root.left, key)
elif key > root.key:
root.right = self.delete(root.right, key)
else:
if not root.left:
return root.right
if not root.right:
return root.left
temp = self.minValueNode(root.right)
root.key = temp.key
root.right = self.delete(root.right, temp.key)
return root
def minValueNode(self, root):
while root.left:
root = root.left
return root
def search(self, root, key):
if not root:
return False
if key == root.key:
return True
elif key < root.key:
return self.search(root.left, key)
else:
return self.search(root.right, key)
def add(self, key):
self.root = self.insert(self.root, key)
def remove(self, key):
self.root = self.delete(self.root, key)
def contains(self, key):
return self.search(self.root, key)
class MyHashSet:
def __init__(self):
self.size = 10000
self.buckets = [BST() for _ in range(self.size)]
def _hash(self, key):
return key % self.size
def add(self, key: int) -> None:
idx = self._hash(key)
if not self.contains(key):
self.buckets[idx].add(key)
def remove(self, key: int) -> None:
idx = self._hash(key)
self.buckets[idx].remove(key)
def contains(self, key: int) -> bool:
idx = self._hash(key)
return self.buckets[idx].contains(key)Where is the number of keys, is the size of the set () and is the number of unique keys.
class MyHashSet:
def __init__(self):
# key is in the range [1, 1000000]
# 31251 * 32 = 1000032
self.set = [0] * 31251
def add(self, key: int) -> None:
self.set[key // 32] |= self.getMask(key)
def remove(self, key: int) -> None:
if self.contains(key):
self.set[key // 32] ^= self.getMask(key)
def contains(self, key: int) -> bool:
return self.set[key // 32] & self.getMask(key) != 0
def getMask(self, key: int) -> int:
return 1 << (key % 32)Where is the size of the set .