LRU缓存机制

146. LRU缓存机制

力扣原题传送门

LRU缓存机制

初次解题思路

哈希表+双向链表,由于被禁用LinkedHashMap类,自己代码实现。

public class LRUCache {

    private HashMap<Integer, Node> hashMap;
    private int size;
    private AtomicInteger count = new AtomicInteger(0);
    private Integer lastIndexKey;
    private Integer firstIndexKey;

    public LRUCache(int capacity) {
        if (capacity < 1) {
            throw new RuntimeException("capacity必须大于零");
        }
        this.hashMap = new HashMap<>(capacity);
        this.size = capacity;
    }

    public int get(int key) {
        int value = hashMap.get(key) != null ? hashMap.get(key).getValue() : -1;
        if (value != -1) {
            swap(key, value, hashMap.get(key));
        }
        return value;
    }

    public void put(int key, int value) {
        Node node = hashMap.get(key);
        if (node == null) {
            putNewKey(key, value);
        } else {
            swap(key, value, node);
        }
    }

    private void putNewKey(int key, int value) {
        Node node = new Node();
//        node.setHead(lastIndexKey);
        node.setValue(value);

        // 第一条数据入map
        if (count.get() == 0) {
            this.firstIndexKey = key;
            this.lastIndexKey = key;
            hashMap.put(key, node);
            this.count.incrementAndGet();
            return;
        }

        // 非第一条数据入map,当map已满时
        if (count.get() == size) {
            Node oldFirstNode = hashMap.get(firstIndexKey);
            hashMap.remove(firstIndexKey);
            if (oldFirstNode != null && oldFirstNode.getTail() != null) {
                this.firstIndexKey = oldFirstNode.getTail();
                hashMap.get(oldFirstNode.getTail()).setHead(null);
            } else {
                this.firstIndexKey = key;
                this.lastIndexKey = key;
            }
            Node oldLastNode = hashMap.get(this.lastIndexKey);
            if (oldLastNode != null) {
                oldLastNode.setTail(key);
                node.setHead(this.lastIndexKey);
            } else {
                this.firstIndexKey = key;
            }
            this.lastIndexKey = key;
            hashMap.put(key, node);
        } else {
            this.count.incrementAndGet();
            Node oldLastNode = hashMap.get(this.lastIndexKey);
            oldLastNode.setTail(key);
            node.setHead(this.lastIndexKey);
            this.lastIndexKey = key;
            hashMap.put(key, node);
        }
    }

    private void swap(int key, int value, Node node) {
        if (size == 1 || Objects.equals(this.lastIndexKey, key)) {
            this.hashMap.get(this.lastIndexKey).setValue(value);
            return;
        }
        node.setValue(value);
        if (node.getHead() == null) {
            Node oldFirst = node;
            hashMap.remove(this.firstIndexKey);
            this.firstIndexKey = oldFirst.getTail();
            if (oldFirst.getTail() != null) {
                this.hashMap.get(oldFirst.getTail()).setHead(null);
            }
        } else {
            hashMap.remove(node);
            if (node.getHead() != null) {
                this.hashMap.get(node.getHead()).setTail(node.getTail());
            }
            if (node.getTail() != null) {
                this.hashMap.get(node.getTail()).setHead(node.getHead());
            }
        }
        hashMap.get(this.lastIndexKey).setTail(key);
        node.setHead(this.lastIndexKey);
        node.setTail(null);
        this.lastIndexKey = key;
        hashMap.put(key, node);
    }

    public class Node {

        private int value;

        private Integer head;

        private Integer tail;

        public int getValue() {
            return value;
        }

        public void setValue(int value) {
            this.value = value;
        }

        public Integer getHead() {
            return head;
        }

        public void setHead(Integer head) {
            this.head = head;
        }

        public Integer getTail() {
            return tail;
        }

        public void setTail(Integer tail) {
            this.tail = tail;
        }

        @Override
        public String toString() {
            return "Node{" +
                    "value=" + value +
                    ", head=" + head +
                    ", tail=" + tail +
                    '}';
        }
    }

    public HashMap<Integer, Node> getHashMap() {
        return hashMap;
    }

    public void setHashMap(HashMap<Integer, Node> hashMap) {
        this.hashMap = hashMap;
    }

    public int getSize() {
        return size;
    }

    public void setSize(int size) {
        this.size = size;
    }

    public AtomicInteger getCount() {
        return count;
    }

    public void setCount(AtomicInteger count) {
        this.count = count;
    }

    public Integer getLastIndexKey() {
        return lastIndexKey;
    }

    public void setLastIndexKey(Integer lastIndexKey) {
        this.lastIndexKey = lastIndexKey;
    }

    public Integer getFirstIndexKey() {
        return firstIndexKey;
    }

    public void setFirstIndexKey(Integer firstIndexKey) {
        this.firstIndexKey = firstIndexKey;
    }
}

/**
 * Your LRUCache object will be instantiated and called as such:
 * LRUCache obj = new LRUCache(capacity);
 * int param_1 = obj.get(key);
 * obj.put(key,value);
 */

力扣官方解法

LinkedHashMap简直为这题目量身定做。

class LRUCache extends LinkedHashMap<Integer, Integer>{
    private int capacity;
    
    public LRUCache(int capacity) {
        super(capacity, 0.75F, true);
        this.capacity = capacity;
    }

    public int get(int key) {
        return super.getOrDefault(key, -1);
    }

    public void put(int key, int value) {
        super.put(key, value);
    }

    @Override
    protected boolean removeEldestEntry(Map.Entry<Integer, Integer> eldest) {
        return size() > capacity; 
    }
}

作者:LeetCode-Solution
链接:https://leetcode-cn.com/problems/lru-cache/solution/lruhuan-cun-ji-zhi-by-leetcode-solution/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
LRU(Least Recently Used)缓存机制是一种常见的缓存淘汰策略,它会将最近最少使用的缓存数据淘汰出去,从而保持缓存的容量在一定的范围内。 在 Java 中,我们可以使用 LinkedHashMap 类来实现 LRU 缓存机制。LinkedHashMap 是一种哈希表和链表实现的有序映射表,它允许我们按照元素的插入顺序或访问顺序进行遍历。我们可以通过设置 accessOrder 参数为 true 来启用按访问顺序排序。 下面是一份简单的 Java 实现代码: ```java import java.util.LinkedHashMap; import java.util.Map; public class LRUCache<K, V> extends LinkedHashMap<K, V> { private int capacity; public LRUCache(int capacity) { super(capacity, 0.75f, true); this.capacity = capacity; } protected boolean removeEldestEntry(Map.Entry<K, V> eldest) { return size() > capacity; } } ``` 在上面的代码中,我们继承了 LinkedHashMap 类,并在构造函数中调用了父类的构造函数,同时设置 accessOrder 为 true。我们还实现了 removeEldestEntry 方法,该方法会在每次插入元素时被调用,如果当前缓存的元素数量超过了设定的容量,就会将最老的元素删除。 使用该 LRU 缓存类的示例代码: ```java LRUCache<Integer, Integer> cache = new LRUCache<>(2); cache.put(1, 1); cache.put(2, 2); System.out.println(cache.get(1)); // 输出 1 cache.put(3, 3); System.out.println(cache.get(2)); // 输出 null cache.put(4, 4); System.out.println(cache.get(1)); // 输出 null System.out.println(cache.get(3)); // 输出 3 System.out.println(cache.get(4)); // 输出 4 ``` 在上面的示例代码中,我们创建了一个容量为 2 的 LRU 缓存,并且按顺序插入了三个元素。由于容量只有 2,因此最后插入的元素 4 会将元素 1 淘汰出缓存,而元素 2 虽然是最近使用的,但是由于已经被淘汰出缓存,因此返回的值为 null。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值