码迷,mamicode.com
首页 > 编程语言 > 详细

lru cache java

时间:2014-07-07 15:32:24      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   java   html   htm   

http://www.acmerblog.com/leetcode-lru-cache-lru-5745.html

acm之家的讲解是在是好,丰富

import java.util.LinkedHashMap;
public class LRUCache {
     private int capacity;
     private LinkedHashMap<Integer,Integer> map=null;
    
    public LRUCache(int capacity) {
        this.capacity=capacity;
        map=new LinkedHashMap<Integer,Integer>(16,0.75f,true){
            protected boolean removeEldestEntry(java.util.Map.Entry<Integer,Integer> eldest) {  
        
            return size()>LRUCache.this.capacity;
        

            
        }
        
    };
    }
    
    public int get(int key) {
        if(map.get(key)==null)
        {
            return -1;
        }
        return map.get(key);
        
    }
    
    public void set(int key, int value) {
        map.put(key,value);
        
        
    }
}

  

 

lru cache java,布布扣,bubuko.com

lru cache java

标签:des   blog   http   java   html   htm   

原文地址:http://www.cnblogs.com/hansongjiang/p/3815137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!