题解 | #设计LRU缓存结构#手写双向链表

设计LRU缓存结构

http://www.nowcoder.com/practice/e3769a5f49894d49b871c09cadd13a61

struct List_Node {
   int key, value;
    List_Node *pre;
    List_Node *next;
    List_Node(int a = 0, int b = 0) : key(a), value(b), pre(nullptr), next(nullptr) {}
};

class Solution {
private:
    int n, capacity_;
    List_Node *head;
    List_Node *tail;
    unordered_map <int, List_Node *> ss;

public:
    vector <int> ans;

    List_Node *DelTail() {
        List_Node *p = tail->pre;
        DelNode(p);
        return p;
    }

    void DelNode(List_Node *p) {
        p->pre->next = p->next;
        p->next->pre = p->pre;
        return ;
    }

    void AddToHead(List_Node *p) {
        p->next = head->next;
        p->next->pre = p;
        head->next = p;
        p->pre = head;
        return ;
    }

    void MoveToHead(List_Node *p) {
        DelNode(p);
        AddToHead(p);
        return ;
    }

    void get(int key) {
        if(!ss.count(key)) ans.push_back(-1);
        else {
            MoveToHead(ss[key]);
            ans.push_back(ss[key]->value);
        }
        return ;
    }

    void set(int key, int value) {
        if(!ss.count(key)) {
            List_Node *p = new List_Node(key, value);
            ss[key] = p;
            AddToHead(p);
            n++;
            if(n > capacity_) {
                List_Node *q = DelTail();
                ss.erase(q->key);
                n--;
            }
        } else {
            MoveToHead(ss[key]);
            ss[key]->value = value;
        }
        return ;
    }

    vector<int> LRU(vector<vector<int> >& operators, int k) {
        n = 0, capacity_ = k;
        head = new List_Node();
        tail = new List_Node();
        head->next = tail;
        tail->pre =  head;
        for(auto &c : operators) {
            if(c[0] == 1) set(c[1], c[2]);
            else get(c[1]);
        }
        return ans;
    }
};
全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
希望各位大哥分享一下自己的看法,对于机器人行业确实不太了解
绝顶但不聪明:如果是机器人相关岗位,优先优必选(专门***器人的),其他岗位选小米
投递小米集团等公司10个岗位 > 牛客解忧铺 牛客在线求职答疑中心
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务