2014年2月17日

LRU

摘要: import java.util.*;/* * we are using linked list with hashmap for Lru.Reason behind this is ,since HashMap is able to store data and key but * how do we get info about least recently used cache value?. For this we need to keep track all inserted data into map * by using linked list. When inserting n 阅读全文

posted @ 2014-02-17 04:55 brave_bo 阅读(185) 评论(0) 推荐(0)

导航