해시테이블 구현 - 자바
2020. 8. 10. 01:18
※ 이 자료는 공부를 목적으로 출처에 기입한 여러 자료를 단순히 정리한 것입니다. ※ 출처에 기입한 채널의 코드를 복습하기 위해 재구현하였습니다. import java.util.LinkedList; class hashTable { class Node{ String key; String value; public Node(String key, String value) { this.key = key; this.value = value; } String getValue() { return value; } void setValue(String value) { this.value = value; } } LinkedList[] data; hashTable(int size) { this.data = new Linked..