**Another thought and even a simple implementation using LinkedHashMap collection of Java.**
LinkedHashMap provided method removeEldestEntry and which can be overridden in the way mentioned in example. By default implementation of this collection structure is false. If its true and size of this structure goes beyond the initial capacity than eldest or older elements will be removed.
We can have a pageno and page content in my case pageno is integer and pagecontent i have kept page number values string.
<pre>
import java.util.LinkedHashMap;
import java.util.Map;
/**
* @author Deepak Singhvi
*
*/
public class LRUCacheUsingLinkedHashMap {
private static int CACHE_SIZE = 3;
public static void main(String[] args) {
System.out.println(" Pages for consideration : 2, 1, 0, 2, 8, 2, 4,99");
System.out.println("----------------------------------------------\n");
// accessOrder is true, so whenever any page gets changed or accessed,
// its order will change in the map,
LinkedHashMap<Integer,String> lruCache = new
LinkedHashMap<Integer,String>(CACHE_SIZE, .75F, true) {
private static final long serialVersionUID = 1L;
protected boolean removeEldestEntry(Map.Entry<Integer,String>
eldest) {
return size() > CACHE_SIZE;
}
};
lruCache.put(2, "2");
lruCache.put(1, "1");
lruCache.put(0, "0");
System.out.println(lruCache + " , After first 3 pages in cache");
lruCache.put(2, "2");
System.out.println(lruCache + " , Page 2 became the latest page in the cache");
lruCache.put(8, "8");
System.out.println(lruCache + " , Adding page 8, which removes eldest element 2 ");
lruCache.put(2, "2");
System.out.println(lruCache+ " , Page 2 became the latest page in the cache");
lruCache.put(4, "4");
System.out.println(lruCache+ " , Adding page 4, which removes eldest element 1 ");
lruCache.put(99, "99");
System.out.println(lruCache + " , Adding page 99, which removes eldest element 8 ");
}
}
</pre>
Result of above code execution is as follows:
Pages for consideration : 2, 1, 0, 2, 8, 2, 4,99
--------------------------------------------------
<pre>
{2=2, 1=1, 0=0} , After first 3 pages in cache
{2=2, 1=1, 0=0} , Page 2 became the latest page in the cache
{1=1, 0=0, 8=8} , Adding page 8, which removes eldest element 2
{0=0, 8=8, 2=2} , Page 2 became the latest page in the cache
{8=8, 2=2, 4=4} , Adding page 4, which removes eldest element 1
{2=2, 4=4, 99=99} , Adding page 99, which removes eldest element 8
</pre>