Data Structure/Data Structure 구현
-
Hash 구현해보기 JavaData Structure/Data Structure 구현 2020. 3. 6. 17:35
해시란 키에 해당하는 고유한 숫자 값을 통해 해당하는 값(value)으로 바로 찾아갈 수 있는 O(1)의 복잡도를 띄는 굉장히 빠른 알고리즘이다. 자바에서는 HashMap 이 예이다. https://stackoverflow.com/questions/3069709/what-is-a-hash-function-in-java What is a hash function in java? I have check out this Wikipedia page on it, but I still don't understand it. Can someone please help my dim-witted mind to understand the concepts of hashing, hashtable/hashmap, and hash..