-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRUcache.txt
89 lines (70 loc) · 2.14 KB
/
LRUcache.txt
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
146. LRU Cache
Design a data structure that follows the constraints of a Least Recently Used (LRU) cache.
Implement the LRUCache class:
LRUCache(int capacity) Initialize the LRU cache with positive size capacity.
int get(int key) Return the value of the key if the key exists, otherwise return -1.
void put(int key, int value) Update the value of the key if the key exists.
Otherwise, add the key-value pair to the cache.
If the number of keys exceeds the capacity from this operation, evict the least recently used key.
The functions get and put must each run in O(1) average time complexity.
class LRUCache {
public:
class Node{
public:
int key;
int val;
Node* prev;
Node* next;
Node(int key, int val){
this->key = key;
this->val = val;
}
};
Node* head = new Node(-1, -1);
Node* tail = new Node(-1, -1);
int cap;
unordered_map<int, Node*> m;
LRUCache(int capacity) {
cap = capacity;
head -> next = tail;
tail -> prev = head;
}
void addNode(Node* newnode){
Node* temp = head -> next;
newnode -> next = temp;
newnode -> prev = head;
head -> next = newnode;
temp -> prev = newnode;
}
void deleteNode(Node* delnode){
Node* prevv = delnode -> prev;
Node* nextt = delnode -> next;
prevv -> next = nextt;
nextt -> prev = prevv;
}
int get(int key) {
if(m.find(key) != m.end()){
Node* resNode = m[key];
int ans = resNode -> val;
m.erase(key);
deleteNode(resNode);
addNode(resNode);
m[key] = head -> next;
return ans;
}
return -1;
}
void put(int key, int value) {
if(m.find(key) != m.end()){
Node* curr = m[key];
m.erase(key);
deleteNode(curr);
}
if(m.size() == cap){
m.erase(tail -> prev -> key);
deleteNode(tail -> prev);
}
addNode(new Node(key, value));
m[key] = head -> next;
}
};