티스토리 뷰
Problem
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 104 calls will be made to add, remove, and contains.
Solution
hash table 관련 라이브러리를 사용하지 않고 HashSet
을 구현하는 문제입니다.
문제가 너무 간단해서 코드만 첨부하겠습니다.
package io.lcalmsky.leetcode.design_hashset;
public class MyHashSet {
private final boolean[] elements;
public MyHashSet() {
elements = new boolean[1000001];
}
public void add(int key) {
elements[key] = true;
}
public void remove(int key) {
elements[key] = false;
}
public boolean contains(int key) {
return elements[key];
}
}
Test
package io.lcalmsky.leetcode.design_hashset;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
class MyHashSetTest {
@Test
void test() {
MyHashSet myHashSet = new MyHashSet();
myHashSet.add(1);
myHashSet.add(2);
assertTrue(myHashSet.contains(1));
assertFalse(myHashSet.contains(3));
myHashSet.add(2);
assertTrue(myHashSet.contains(2));
myHashSet.remove(2);
assertFalse(myHashSet.contains(2));
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
844. Backspace String Compare (0) | 2022.05.06 |
---|---|
703. Kth Largest Element in a Stream (0) | 2022.05.05 |
410. Split Array Largest Sum (0) | 2022.05.03 |
897. Increasing Order Search Tree (0) | 2022.04.30 |
669. Trim a Binary Search Tree (0) | 2022.04.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- r
- 스프링 부트 애플리케이션
- Spring Boot Tutorial
- 스프링 부트 회원 가입
- Spring Data JPA
- 함께 자라기
- spring boot jwt
- QueryDSL
- leetcode
- Spring Boot
- 스프링 부트 튜토리얼
- 클린 아키텍처
- @ManyToOne
- JPA
- 함께 자라기 후기
- 헥사고날 아키텍처
- Jackson
- gRPC
- Spring Boot JPA
- spring boot app
- JSON
- 스프링부트
- 스프링 부트
- intellij
- spring boot application
- proto3
- Java
- 스프링 데이터 jpa
- 알고리즘
- Linux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함