鱼C论坛

 找回密码
 立即注册
查看: 570|回复: 0

[技术交流] 【朱迪的LeetCode刷题笔记】705. Design HashSet #Easy #Python #C++

[复制链接]
发表于 2023-5-30 08:35:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Judie 于 2023-5-29 19:37 编辑

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 <= 10^6
At most 10^4 calls will be made to add, remove, and contains.

Judy
Python
  1. class MyHashSet(object):

  2.     def __init__(self):
  3.         self.set = set()

  4.     def add(self, key):
  5.         """
  6.         :type key: int
  7.         :rtype: None
  8.         """
  9.         self.set.add(key)

  10.     def remove(self, key):
  11.         """
  12.         :type key: int
  13.         :rtype: None
  14.         """
  15.         if key in self.set:
  16.             self.set.remove(key)

  17.     def contains(self, key):
  18.         """
  19.         :type key: int
  20.         :rtype: bool
  21.         """
  22.         return key in self.set


  23. # Your MyHashSet object will be instantiated and called as such:
  24. # obj = MyHashSet()
  25. # obj.add(key)
  26. # obj.remove(key)
  27. # param_3 = obj.contains(key)
复制代码


Mike
C++ a little bit better
  1. class MyHashSet {
  2. public:
  3.     unordered_map<int, bool> hash;
  4.     MyHashSet() {
  5.         hash = {};
  6.     }

  7.     void add(int key) {
  8.         hash[key] = true;
  9.     }

  10.     void remove(int key) {
  11.         hash.erase(key);
  12.     }

  13.     bool contains(int key) {
  14.         return !(hash.find(key) == hash.end());
  15.     }
  16. };
复制代码


Gray
C++
  1. class MyHashSet {
  2. public:
  3.     MyHashSet() {

  4.     }
  5.     map<int,int> hashmap;
  6.     void add(int key) {
  7.         hashmap[key] = 1;
  8.     }

  9.     void remove(int key) {
  10.         hashmap[key] = 0;
  11.     }

  12.     bool contains(int key) {
  13.         if(hashmap.find(key)!=hashmap.end() && hashmap[key]==1){
  14.             return true;
  15.         }else {
  16.             return false;
  17.         }
  18.     }
  19. };
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-4-24 12:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表