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

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

LRU Cache -- Lintcode 134

2019-11-14 12:01:35
字體:
來源:轉載
供稿:網友

原題連接: http://www.lintcode.com/en/PRoblem/lru-cache/

Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following Operations: get and set.

get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.set(key, value) - Set or insert the value if the key is not already present. When the cache reached its capacity, it should invalidate the least recently used item before inserting a new item.

題目要求設計和實現一個給LRU Cache用的數據結構,要求包含兩個操作, get 和 set。首先題目有一點沒有講清楚,那就是當要插入的(key,value)已經存在時的行為。題目只是說當key不存在時插入,而當要插入的key已經存在時的行為如何,題目并沒有說明,是覆蓋舊的value還是直接返回。我是通過提交代碼,發現當要插入的key已經存在時,用新的value覆蓋舊的value。網絡上有很多關于用一個hash table 和一個list實現的代碼,我就不再累述。下面講述我用兩個hash table的實現。一個叫cache的用于保存數據的<key,value>,另一個叫stamp用于保存<key,timeStamp>。get操作很簡單,直接在cache里面查找并返回相應的結果,同時要更新stamp里的時間戳。set操作先檢查要插入的key是否已經存在。如果存在,更新value和time stamp并返回。如果不存在,并且cache的數據個數小于capacity,直接執行插入操作。如果capacity已經滿了,就從stamp里查找時間戳最小的key,此時需要O(capacity)的時間復雜度。然后把對應的數據刪除并插入當前的<key,value>。 C++實現如下:

class LRUCache{public:    // @param capacity, an integer    int currTime;    int cap;    unordered_map<int, int> cache;    unordered_map<int, int> stamp;        LRUCache(int capacity) {        // write your code here        currTime = 0;        cap = capacity;        cache.reserve(capacity);        stamp.reserve(capacity);    }        // @return an integer    int get(int key) {        // write your code here        if (cache.count(key))        {            ++currTime;            stamp[key] = currTime;                        return cache[key];        }                return -1;    }    // @param key, an integer    // @param value, an integer    // @return nothing    void set(int key, int value) {        // write your code here            ++currTime;                 if (cache.count(key))        {            cache[key] = value;            stamp[key] = currTime;            return;        }        if (cache.size() < cap)        {            cache[key] = value;            stamp[key] = currTime;                        return;        }                int minTime = INT_MAX;        unordered_map<int, int>::iterator leIt, it = stamp.begin();                while (it != stamp.end())        {            if (it->second < minTime)            {                minTime = it->second;                leIt = it;            }                        ++it;        }                unordered_map<int, int>::iterator cacheIt = cache.find(leIt->first);        cache.erase(cacheIt);        cache[key] = value;                stamp.erase(leIt);        stamp[key] = currTime;    }};


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 楚雄市| 万荣县| 泸溪县| 彰化市| 永康市| 鄂托克旗| 鞍山市| 微山县| 芦溪县| 康乐县| 峨山| 海原县| 米脂县| 罗平县| 龙川县| 长垣县| 烟台市| 沈阳市| 雅江县| 阳原县| 清新县| 于田县| 鄯善县| 沙湾县| 嘉兴市| 获嘉县| 上饶县| 阳江市| 施秉县| 西吉县| 伊吾县| 耒阳市| 河池市| 嘉鱼县| 连城县| 两当县| 镇沅| 台湾省| 武安市| 东辽县| 沛县|