-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRUCache.cpp
204 lines (186 loc) · 3.52 KB
/
LRUCache.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#include<iostream>
#include<unordered_map>
using namespace std;
struct DLL
{
int key;
int value;
struct DLL *prev;
struct DLL *next;
} ;
class LRUCache
{
public:
int get(int key);
void put(int key, int value);
LRUCache(int capacity);
//add node in DLL;
void addNode(DLL *node);
void removeNode(DLL *node);
void moveToHead(DLL *node);
DLL* popTail();
void printList();
private:
int _capacity, size;
std::unordered_map <int, struct DLL*> _cache;
DLL *head, *tail;
typedef unordered_map <int, struct DLL*> TNodeMap;
};
void LRUCache::printList()
{
struct DLL* last;
struct DLL* first = tail;
printf("\nTraversal in forward direction \n");
while (first != NULL) {
printf(" %d ", first->key);
last = first;
first = last->prev;
}
if(tail!= NULL)
{
printf("tail %d ", tail->key);
}
}
void LRUCache::addNode(DLL *node)
{
/**
* Always add the new node right after head.
*/
if(head == nullptr)
{
head = node;
tail = node;
}
else
{
head->prev = node;
node->next = head;
head = node;
//shead->prev = nullptr;
}
}
void LRUCache::removeNode(DLL *node)
{
if (node->prev != nullptr)
node->prev->next = node->next;
if (node->next != nullptr)
node->next->prev = node->prev;
}
void LRUCache::moveToHead(DLL *node)
{
if (node != head)
{
//If at tail, update tail
if (node == tail)
{
tail = node->prev;
}
removeNode(node);
addNode(node);
}
}
DLL* LRUCache::popTail()
{
if(tail == nullptr)
{
return nullptr;
}
else
{
DLL* res = tail;
// removeNode(res);
return res;
}
}
LRUCache::LRUCache(int capacity)
{
_capacity = capacity;
size = 0;
head = nullptr;
// head.prev = null;
tail = nullptr;
}
void LRUCache::put(int key, int value)
{
std::unordered_map <int, struct DLL*>::iterator it = _cache.find(key);
if(it != _cache.end())
{
DLL *node = it->second;
node->value = value;
moveToHead(node);
}
else
{
++size;
if(size>_capacity)
{
DLL* tailNode = tail;
if(tailNode!= nullptr)
{
_cache.erase(_cache.find(tailNode->key));
//Remove LRU item from list
DLL *tmp = tailNode;
if (head == tail)
{
head = nullptr;
tail = nullptr;
}
else
{
tail = tail->prev;
if(tail)
{
tail->next = nullptr;
}
}
--size;
free(tailNode);
}
}
struct DLL *newNode = (struct DLL*)malloc(sizeof(struct DLL));
newNode->next = nullptr;
newNode->prev = nullptr;
newNode->value = value;
newNode->key = key;
_cache.insert(TNodeMap::value_type(key, newNode));
addNode(newNode);
}
}
int LRUCache::get(int key)
{
std::unordered_map <int, struct DLL*>::iterator it = _cache.find(key);
if(it == _cache.end())
{
return -1;
}
DLL *node = it->second;
// move the accessed node to the head;
moveToHead(node);
return node->value;
}
/**
* Your LRUCache object will be instantiated and called as such:
* LRUCache* obj = new LRUCache(capacity);
* int param_1 = obj->get(key);
* obj->put(key,value);
*/
int main12()
{
LRUCache *lruCache = new LRUCache(2);
lruCache->put(1,1);
lruCache->put(2,2);
lruCache->get(1);
lruCache->put(3,3);
lruCache->get(2);
lruCache->put(4,4);
lruCache->get(1);
lruCache->get(3);
lruCache->get(4);
//lruCache->printList();
/*["LRUCache","put","put","get","put","get","put","get","get","get"]
[[2],[1,1],[2,2],[1],[3,3],[2],[4,4],[1],[3],[4]]
["LRUCache","put","put","get","put","get","put","get","get","get"]
[[2],[1,1],[2,2],[1],[3,3],[2],[4,4],[1],[3],[4]]
*/
return 0;
}