Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Counting
- simulation
- Stack
- Class
- geometry
- bit manipulation
- database
- array
- Method
- SQL
- java
- 자바
- Matrix
- dynamic programming
- sorting
- Number Theory
- string
- Data Structure
- two pointers
- Tree
- Binary Tree
- Math
- implement
- greedy
- hash table
- 파이썬
- Binary Search
- 코딩테스트
- 구현
- 코테
Archives
- Today
- Total
목록hash function (2)
코린이의 소소한 공부노트
[LeetCode/Easy] 706. Design HashMap
목표: 해시에 관련된 빌트인 라이브러리를 사용하지 않고 해시맵 구현하기 - 생성자 - put(), get(), remove() 1. Input 1) 생성자: 없음 2) put(): int key, int value 3) get(): int key 4) remove(): int key 2. Output 1) put(): void. 해시맵에 (key, value) 추가. 만약 key가 있다면 값을 value로 변경 2) get(): key에 해당하는 value 반환. 만약 없다면 -1을 반환 3) remove(): void. key가 있다면 (key, value) 삭제 3. Constraint 1) 0
코딩테스트 풀이/JAVA
2023. 5. 30. 00:40
[LeetCode/Easy] 705. Design HashSet
목표: HashSet과 관련된 메서드를 아무 것도 쓰지 않고 HashSet을 구현하기 - 생성자 - add(), contains(), remove() 1. Input 1) add(): HashSet에 추가할 값 2) contains(): HashSet에 있는지 없는지 확인할 값 3) remove(): HashSet에서 제거할 값. 만약 해당 값이 HashSet에 없다면 아무 일도 일어나지 않는다. 2. Output 1) contains(): HashSet에 값이 있다면 true, 없다면 false를 반환 3. Constraint 1) 0
코딩테스트 풀이/JAVA
2023. 3. 18. 22:57