자바 링크 드 HashMap 첫 번 째 요소 와 마지막 요 소 를 가 져 옵 니 다.
4553 단어 JAVA
링크 드 HashMap 의 머리 요소 가 져 오기 (최초 로 추 가 된 요소):
시간 복잡 도 O (1)
public Entry getHead(LinkedHashMap map) {
return map.entrySet().iterator().next();
}
LinkedHashMap 의 끝 요소 가 져 오기 (최근 에 추 가 된 요소):
시간 복잡 도 O (n)
public Entry getTail(LinkedHashMap map) {
Iterator> iterator = map.entrySet().iterator();
Entry tail = null;
while (iterator.hasNext()) {
tail = iterator.next();
}
return tail;
}
반사 로 링크 드 HashMap 의 끝 요 소 를 가 져 옵 니 다:
시간 복잡 도 O (1), tail 속성 방문
public Entry getTailByReflection(LinkedHashMap map)
throws NoSuchFieldException, IllegalAccessException {
Field tail = map.getClass().getDeclaredField("tail");
tail.setAccessible(true);
return (Entry) tail.get(map);
}
테스트 코드:
import static org.junit.Assert.assertEquals;
import java.lang.reflect.Field;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map.Entry;
import org.junit.Before;
import org.junit.Test;
public class TestLinkedHashMap {
private LinkedHashMap map = new LinkedHashMap<>();
private String letters[] = { "a", "b", "c", "d", "e" };
@Before
public void init() {
for (int i = 0; i < letters.length; i++) {
map.put(letters[i], i + 1);
}
}
@Test
public void testGetHead() {
assertEquals(getHead(map).getKey(), "a");
assertEquals(getHead(map).getValue(), Integer.valueOf(1));
}
@Test
public void testGetTail() {
assertEquals(getTail(map).getKey(), "e");
assertEquals(getTail(map).getValue(), Integer.valueOf(5));
}
@Test
public void testGetTailByReflection() throws NoSuchFieldException, IllegalAccessException {
assertEquals(getTailByReflection(map).getKey(), "e");
assertEquals(getTailByReflection(map).getValue(), Integer.valueOf(5));
}
public Entry getHead(LinkedHashMap map) {
return map.entrySet().iterator().next();
}
public Entry getTail(LinkedHashMap map) {
Iterator> iterator = map.entrySet().iterator();
Entry tail = null;
while (iterator.hasNext()) {
tail = iterator.next();
}
return tail;
}
@SuppressWarnings("unchecked")
public Entry getTailByReflection(LinkedHashMap map)
throws NoSuchFieldException, IllegalAccessException {
Field tail = map.getClass().getDeclaredField("tail");
tail.setAccessible(true);
return (Entry) tail.get(map);
}
}
본문 링크:http://bookshadow.com/weblog/2016/10/27/java-linked-hash-map-get-first-and-get-last/ 작가 의 노동 성 과 를 존중 하고 전재 하여 출처 를 밝 혀 주 십시오!서 영 블 로 그 는 문장 에 대한 모든 권 리 를 보류한다.
만약 당신 이 이 박문 을 좋아한다 면, 당신 이 영화 블 로 그 를 기증 하 는 것 을 환영 합 니 다. ,알 리 페 이 QR 코드 보기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JAVA 객체 작성 및 제거 방법정적 공장 방법 정적 공장 방법의 장점 를 반환할 수 있습니다. 정적 공장 방법의 단점 류 공유되거나 보호된 구조기를 포함하지 않으면 이불류화할 수 없음 여러 개의 구조기 파라미터를 만났을 때 구축기를 고려해야 한다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.