-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRU.cpp
40 lines (39 loc) · 900 Bytes
/
LRU.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Problem Link - https://www.interviewbit.com/problems/lru-cache/
/* Problem Solution Function --------------+
#include <list> <------------------+
list<pair<int,int>> dq;
unordered_map<int, list<pair<int,int>>::iterator> mp;
int cache_cap;
LRUCache::LRUCache(int capacity)
{
dq.clear();
mp.clear();
cache_cap = capacity;
}
int LRUCache::get(int key)
{
if(mp.find(key) == mp.end()) return -1;
int value = (*mp[key]).second;
dq.erase(mp[key]);
dq.push_front({key, value});
mp[key] = dq.begin();
return value;
}
void LRUCache::set(int key, int value)
{
if(mp.find(key) == mp.end())
{
if(cache_cap == dq.size())
{
int keyy = (dq.back()).first;
dq.pop_back();
mp.erase(keyy);
}
}
else{
dq.erase(mp[key]);
}
dq.push_front({key, value});
mp[key] = dq.begin();
}
*/