-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlru_cache.rs
289 lines (242 loc) · 7.14 KB
/
lru_cache.rs
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
use std::cell::RefCell;
use std::collections::HashMap;
use std::fmt;
use std::rc::Rc;
#[derive(Clone, PartialEq, Eq)]
struct CacheNode {
key: i32,
value: i32,
prev: Option<Rc<RefCell<CacheNode>>>,
next: Option<Rc<RefCell<CacheNode>>>,
}
impl CacheNode {
fn new(key: i32, value: i32) -> Self {
Self { key, value, prev: None, next: None }
}
}
impl fmt::Debug for CacheNode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("CacheNode")
.field("key", &self.key)
.field("value", &self.value)
.field("prev", &self.prev.get_key())
.field("next", &self.next.get_key())
.finish()
}
}
trait CacheNodeAdditions {
fn get_key(&self) -> Option<i32>;
fn get_value(&self) -> Option<i32>;
fn set_value(&self, value: i32);
fn has_key_value(&self, key: i32, value: i32) -> bool;
fn set_prev(&self, prev: Self);
fn set_next(&self, next: Self);
fn take_prev(&self) -> Self;
fn take_next(&self) -> Self;
}
impl CacheNodeAdditions for Option<Rc<RefCell<CacheNode>>> {
fn get_key(&self) -> Option<i32> {
match self {
Some(rc) => {
let node = rc.borrow();
Some(node.key)
}
None => None
}
}
fn get_value(&self) -> Option<i32> {
match self {
Some(rc) => {
let node = rc.borrow();
Some(node.value)
}
None => None
}
}
fn set_value(&self, value: i32) {
match self {
Some(rc) => {
let mut node = rc.borrow_mut();
node.value = value;
}
None => { }
}
}
fn has_key_value(&self, key: i32, value: i32) -> bool {
match self {
Some(rc) => {
let node = rc.borrow();
node.key == key && node.value == value
}
None => false
}
}
fn set_prev(&self, prev: Self) {
match self {
Some(rc) => {
let mut node = rc.borrow_mut();
node.prev = prev;
}
None => { } // do nothing
}
}
fn set_next(&self, next: Self) {
match self {
Some(rc) => {
let mut node = rc.borrow_mut();
node.next = next;
}
None => { } // do nothing
}
}
fn take_prev(&self) -> Self {
match self {
Some(rc) => {
let mut node = rc.borrow_mut();
node.prev.take()
}
None => {
None
}
}
}
fn take_next(&self) -> Self {
match self {
Some(rc) => {
let mut node = rc.borrow_mut();
node.next.take()
}
None => {
None
}
}
}
}
trait CacheNodeCellAdditions {
fn wrapped(self) -> Option<Rc<RefCell<Self>>>;
}
impl CacheNodeCellAdditions for CacheNode {
fn wrapped(self) -> Option<Rc<RefCell<Self>>> {
Some(Rc::new(RefCell::new(self)))
}
}
// 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` form this
/// operation, evict the least recently used key.
///
/// The functions `get` and `put` must each run in `O(1)` average time complexity.
struct LRUCache {
capacity: usize,
items: HashMap<i32, Option<Rc<RefCell<CacheNode>>>>,
front: Option<Rc<RefCell<CacheNode>>>,
back: Option<Rc<RefCell<CacheNode>>>,
}
impl LRUCache {
fn new(capacity: i32) -> Self {
let front = CacheNode::new(i32::MIN, i32::MIN).wrapped();
let back = CacheNode::new(i32::MAX, i32::MAX).wrapped();
front.set_next(back.clone());
back.set_prev(front.clone());
Self {
capacity: capacity as usize,
items: HashMap::new(),
front,
back,
}
}
fn push_back(&mut self, item: Option<Rc<RefCell<CacheNode>>>) {
if item.is_some() {
let prev = self.back.take_prev();
let next = prev.take_next();
prev.set_next(item.clone());
next.set_prev(item.clone());
item.set_prev(prev);
item.set_next(next);
}
}
fn pop_front(&mut self) -> Option<Rc<RefCell<CacheNode>>> {
let result = self.front.take_next();
if result == self.back {
self.front.set_next(result);
None
} else {
let result_next = result.take_next();
let result_prev = result.take_prev();
result_next.set_prev(result_prev);
self.front.set_next(result_next);
result
}
}
fn remove(&mut self, item: &Option<Rc<RefCell<CacheNode>>>) {
if item.is_some() {
let prev = item.take_prev();
let next = item.take_next();
prev.set_next(next.clone());
next.set_prev(prev.clone());
}
}
fn get(&mut self, key: i32) -> i32 {
let mut result = -1;
if let Some(item) = self.items.get(&key) {
result = item.get_value().unwrap();
let cloned = item.clone();
self.remove(&cloned);
self.push_back(cloned);
}
result
}
fn put(&mut self, key: i32, value: i32) {
if let Some(item) = self.items.get(&key) {
let cloned = item.clone();
cloned.set_value(value);
self.remove(&cloned);
self.push_back(cloned);
} else {
if self.items.len() == self.capacity {
let old = self.pop_front();
let key = old.get_key().unwrap();
self.items.remove(&key);
}
let item = CacheNode::new(key, value).wrapped();
self.push_back(item.clone());
self.items.insert(key, item);
}
}
}
#[cfg(test)]
mod tests {
use super::LRUCache;
#[test]
fn example_1() {
let mut lru_cache = LRUCache::new(2);
lru_cache.put(1, 1);
lru_cache.put(2, 2);
let result = lru_cache.get(1);
assert_eq!(result, 1);
lru_cache.put(3, 3);
let result = lru_cache.get(2);
assert_eq!(result, -1);
lru_cache.put(4, 4);
let result = lru_cache.get(1);
assert_eq!(result, -1);
let result = lru_cache.get(3);
assert_eq!(result, 3);
let result = lru_cache.get(4);
assert_eq!(result, 4);
}
#[test]
fn diff_key_value() {
let mut lru_cache = LRUCache::new(1);
lru_cache.put(2, 1);
let result = lru_cache.get(2);
assert_eq!(result, 1);
}
}