LeetCode------LRU Cache

这里写图片描述

这里写图片描述

  • 为什么hashmap在o(1)时间能查找到节点?
    根据查找的内容直接得到数组的下标,所以 时间是o(1)。
    这里写图片描述

示例代码

Java中也有双向链表 LinkedList , 但是 LinkedList 封装的太深,没有能在 O(1) 时间内删除中间某个元素的API(C++的 list 有个 splice() , O(1), 可以直接使用 splice() ),于是我们只能自己实现一个双向链表。当然也可以直接用 LinkedHashMap ,代码更短,但这是一种偷懒做法,面试官一定会让你自己重新实现。

// LRU Cache
// 时间复杂度O(logn),空间复杂度O(n)
public class LRUCache {
    private int capacity;
    private final HashMap<Integer, Node> map;
    private Node head;
    private Node end;

    //初始创建一个hashmap
    public LRUCache(int capacity) {
        this.capacity = capacity;
        map = new HashMap<>();
    } 
    //get将元素移除和放到链表头部
    public int get(int key) {
        if(map.containsKey(key)){
            Node n = map.get(key);
            remove(n);
            setHead(n);
            return n.value;
        } 
        return -1;
    } 
    //set先检查是否包含在hashmap中,包含则在链表中删除并放到链表头部,不包含则创建一个新节点并判断hashmap是否需要扩容
    public void set(int key, int value) {
        if (map.containsKey(key)){
            Node old = map.get(key);
            old.value = value;
            remove(old);
            setHead(old);
        } else {
            Node created = new Node(key, value);
            if (map.size() >= capacity){
                map.remove(end.key);
                remove(end);
                setHead(created);
            } else {
                setHead(created);
            } 
            map.put(key, created);
        }
    } 

    private void remove(Node n){
        if (n.prev !=null) {
            n.prev.next = n.next;
        } else {
            head = n.next;
        } 
        if (n.next != null) {
            n.next.prev = n.prev;
        } else {
            end = n.prev;
        }
    } 

    private void setHead(Node n){
        n.next = head;
        n.prev = null;
        if (head!=null ) head.prev = n;
        head = n;
        if(end == null) end = head;
    } 

    // doubly linked list
    static class Node {
        int key;
        int value;
        Node prev;
        Node next;
        public Node(int key, int value) {
            this.key = key;
            this.value = value;
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值