LinkedHashMap 간단 한 LRU 알고리즘 구현
최근 문 제 를 풀 때 LRU (Least Recently Used) 알고리즘 을 보 았 습 니 다. 그래서 인터넷 에서 찾 아 보 니 자 바 를 사용 한 링크 드 하 쉬 맵 의 실현 이 매우 간단 합 니 다. 링크 드 하 쉬 맵 의 소스 코드 와 결합 하여 보 았 습 니 다. 아래 에 코드 를 직접 붙 이 고 주석 은 매우 상세 하 게 썼 습 니 다.
public class LRUWithLinkedHashMap {
Map<Integer, Integer> cache;
int capacity;
public LRUWithLinkedHashMap(int capacity) {
this.capacity = capacity;
// loadFactor : 0.75 size() > capacity*loadFactor map
// ,
// LRU --accessOrder: true false
this.cache = new LinkedHashMap<Integer, Integer>(capacity, 0.75f, true) {
protected boolean removeEldestEntry(Map.Entry<Integer, Integer> eldest) {
//
return size() > capacity;
}
};
}
@Override
public String toString() {
StringBuilder list = new StringBuilder();
for (Integer integer : this.cache.values()) {
list.append(integer).append("->");
}
return list.substring(0, list.length() - 2);
}
public int get(int key) {
//getOrDefault key -1
// accessOrder=true get afterNodeAccess()
return cache.getOrDefault(key, -1);
}
public void put(int key, int value) {
// removeEldestEntry()
cache.put(key, value);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.