[Data Structure] 자료구조-Hash Table(해시 테이블)
시나리오 : Hash Table 관련해서 리마인드 해 봄. 전체 소스 import java.util.LinkedList; class HashTable { // HashTable에 저장할 데이터 class Node { String key; // 검색할 키 String value; // 검색 결과 public Node(String key, String value){ this.key = key; this.value = value; } String value() { return value; } void value(String value){ this.value = value; } } LinkedList[] data; // 선언하는 순간 크기 설정 HashTable(int size) { this.data = new..
Data Structure 캐기
2022. 2. 7. 21:57