国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

460. LFU Cache

2019-11-10 22:32:09
字體:
來源:轉載
供稿:網友

Design and implement a data structure for Least Frequently Used (LFU) cache. It should support the following Operations: get and put.

get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.put(key, value) - Set or insert the value if the key is not already PResent. When the cache reaches its capacity, it should invalidate the least frequently used item before inserting a new item. For the purpose of this problem, when there is a tie (i.e., two or more keys that have the same frequency), the least recently used key would be evicted.

Follow up:Could you do both operations in O(1) time complexity?

Example:

LFUCache cache = new LFUCache( 2 /* capacity */ );cache.put(1, 1);cache.put(2, 2);cache.get(1);       // returns 1cache.put(3, 3);    // evicts key 2cache.get(2);       // returns -1 (not found)cache.get(3);       // returns 3.cache.put(4, 4);    // evicts key 1.cache.get(1);       // returns -1 (not found)cache.get(3);       // returns 3cache.get(4);       // returns 4

轉載于點擊打開鏈接

要求所有的操作都在O(1)的時間內完成,因為涉及到插入刪除,鏈表優先。

把所有具有相同頻率的關鍵字存放在一個鏈表上,方便刪除頻率最低最近最少使用的關鍵字。

class LFUCache {   int size;   int minfreq;   int cap;   map<int,pair<int,int>> m;//key to pair<value,freq>   map<int,list<int>::iterator> mIter;//key to list location   map<int,list<int>> fm;//freq to listpublic:    LFUCache(int capacity) {       cap=capacity;       size=0;    }        int get(int key) {       if(m.count(key)==0) return -1;       fm[m[key].second].erase(mIter[key]);//刪除key在fm原來的位置       m[key].second++;//頻率加一       fm[m[key].second].push_back(key);//按照頻率,放在新的位置上       mIter[key]=--fm[m[key].second].end();//存儲key現在所在的鏈表例=里的位置       if(fm[minfreq].size()==0)           minfreq++;       return m[key].first;    }        void put(int key, int value) {      if(cap<=0) return;      int storedValue=get(key);      if(storedValue!=-1)//若以前已經存在過      {          m[key].first=value;          return;      }//否則,      if(size>=cap)//可能要根據LFU刪掉一個元素      {          m.erase(fm[minfreq].front());          mIter.erase(fm[minfreq].front());          fm[minfreq].pop_front();          size--;      }      m[key]={value,1};      fm[1].push_back(key);      mIter[key]=--fm[1].end();      minfreq=1;      size++;    }};


上一篇:哈利&#183;波特的考試

下一篇:HPC GPU Node:

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 西吉县| 屯留县| 通山县| 饶河县| 大兴区| 晋城| 文昌市| 东港市| 岐山县| 天镇县| 东山县| 个旧市| 莱州市| 鄱阳县| 台东市| 临西县| 兴隆县| 霍林郭勒市| 晋中市| 宣威市| 江达县| 蕲春县| 洱源县| 永靖县| 县级市| 巴林右旗| 邵阳县| 友谊县| 玉门市| 固安县| 普兰县| 调兵山市| 梁平县| 竹山县| 银川市| 沭阳县| 宁国市| 博爱县| 永安市| 蒙阴县| 什邡市|