개발자취

TIL | HashMap 자료구조 본문

개발/Dev | 자료구조

TIL | HashMap 자료구조

hnhnhun 2023. 6. 16. 02:37

# 4 HashMap 자료구조에 관하여 다음 그림과 같이 간단하게 표현하였습니다. 

 

HashMap 용법은 문서에서 [더 보기]

https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/HashMap.html

 

HashMap (Java SE 11 & JDK 11 )

If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null. If the mapping function returns null, no mapping is recorded. If the

docs.oracle.com

 

내용과 관련한 오류는 댓글에 남겨주시면 수정하겠습니다. :) 끝까지 읽어주셔서 감사합니다.

'개발 > Dev | 자료구조' 카테고리의 다른 글

TIL | Heap 자료구조  (0) 2023.06.18
TIL | LinkedList 자료구조  (0) 2023.06.16
TIL | Array 자료구조  (0) 2023.06.14
TIL | Queue 자료구조  (0) 2023.06.13
TIL | Stack 자료구조  (0) 2023.06.12
Comments