Package de.jungblut.datastructure
Class LRUCache<K,V>
- java.lang.Object
-
- de.jungblut.datastructure.LRUCache<K,V>
-
public class LRUCache<K,V> extends java.lang.ObjectNormal LRU cache based on LinkedHashMap.- Author:
- thomas.jungblut
-
-
Constructor Summary
Constructors Constructor Description LRUCache(int cacheSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vget(K key)voidput(K key, V value)
-