-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlru_cache.rs
230 lines (202 loc) · 6.06 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
#![allow(dead_code)]
use std::{cell::RefCell, collections::HashMap, rc::Rc};
/// A struct representing a node in a doubly linked list used in the LRU cache implementation.
#[derive(Debug)]
struct ListNode {
key: i32,
value: i32,
prev: Option<Rc<RefCell<ListNode>>>,
next: Option<Rc<RefCell<ListNode>>>,
}
impl ListNode {
/// Creates a new instance of the `LRUCache` struct with the given `key` and `value`.
pub fn new(key: i32, value: i32) -> Self {
Self {
key,
value,
prev: None,
next: None,
}
}
}
/// A struct representing a doubly linked list node.
#[derive(Debug)]
struct DoubleListNode {
head: Option<Rc<RefCell<ListNode>>>,
tail: Option<Rc<RefCell<ListNode>>>,
}
impl DoubleListNode {
pub fn new() -> Self {
Self {
head: None,
tail: None,
}
}
fn get_head(&self) -> Option<Rc<RefCell<ListNode>>> {
if self.head.is_none() {
None
} else {
Some(self.head.as_ref().unwrap().clone())
}
}
fn get_tail(&self) -> Option<Rc<RefCell<ListNode>>> {
if self.tail.is_none() {
None
} else {
Some(self.tail.as_ref().unwrap().clone())
}
}
pub fn add_front(&mut self, key: i32, value: i32) {
let node = Rc::new(RefCell::new(ListNode {
key,
value,
prev: None,
next: self.get_head(),
}));
self.head.replace(node);
}
pub fn add_back(&mut self, key: i32, value: i32) {
let node = Rc::new(RefCell::new(ListNode {
key,
value,
prev: self.get_tail(),
next: None,
}));
self.tail.replace(node);
}
pub fn add_front_node(&mut self, node: Rc<RefCell<ListNode>>) {
let head = self.get_head();
if head.is_some() {
head.as_ref().unwrap().borrow_mut().prev = Some(node.clone());
}
node.borrow_mut().prev = None;
node.borrow_mut().next = head;
self.head = Some(node);
}
pub fn add_back_node(&mut self, node: Rc<RefCell<ListNode>>) {
let tail = self.get_tail();
if tail.is_some() {
tail.as_ref().unwrap().borrow_mut().next = Some(node.clone());
}
node.borrow_mut().prev = tail;
node.borrow_mut().next = None;
self.tail = Some(node);
}
pub fn remove(&mut self, target: Rc<RefCell<ListNode>>) {
let prev = target.borrow().prev.clone();
let next = target.borrow().next.clone();
match (prev, next) {
(Some(prev), Some(next)) => {
prev.borrow_mut().next = Some(next.clone());
next.borrow_mut().prev = Some(prev);
}
(Some(prev), None) => {
// tail case
prev.borrow_mut().next.take();
self.tail.replace(prev);
}
(None, Some(next)) => {
// head case
next.borrow_mut().prev.take();
self.head.replace(next);
}
(None, None) => {
// singal node case
self.head.take();
self.tail.take();
}
}
}
pub fn move_head(&mut self, target: Rc<RefCell<ListNode>>) {
if !Rc::ptr_eq(self.get_head().as_ref().unwrap(), &target) {
self.remove(target.clone());
self.add_front_node(target);
}
}
pub fn move_tail(&mut self, target: Rc<RefCell<ListNode>>) {
if !Rc::ptr_eq(self.get_tail().as_ref().unwrap(), &target) {
self.remove(target.clone());
self.add_back_node(target);
}
}
}
/**
* Your LRUCache object will be instantiated and called as such:
* let obj = LRUCache::new(capacity);
* let ret_1: i32 = obj.get(key);
* obj.put(key, value);
*/
pub struct LRUCache {
map: HashMap<i32, Rc<RefCell<ListNode>>>,
lru: DoubleListNode,
cap: usize,
}
/**
* `&self` means the method takes an immutable reference.
* If you need a mutable reference, change it to `&mut self` instead.
*/
impl LRUCache {
pub fn new(capacity: i32) -> Self {
Self {
map: HashMap::new(),
lru: DoubleListNode::new(),
cap: capacity as usize,
}
}
pub fn get(&mut self, key: i32) -> i32 {
if self.map.contains_key(&key) {
let node = self.map.get(&key).unwrap();
self.lru.move_head(node.clone());
node.as_ref().borrow().value
} else {
-1
}
}
pub fn put(&mut self, key: i32, value: i32) {
let node = if self.map.contains_key(&key) {
let node = self.map.get(&key).unwrap();
node.borrow_mut().value = value;
self.lru.remove(node.clone());
self.lru.add_front_node(node.clone());
node.clone()
} else {
let node = Rc::new(RefCell::new(ListNode::new(key, value)));
if self.map.len() == self.cap {
let tail = self.lru.get_tail().as_ref().unwrap().clone();
self.map.remove(&tail.as_ref().borrow().key);
self.lru.remove(tail);
self.map.insert(key, node.clone());
self.lru.add_front_node(node.clone());
} else {
self.map.insert(key, node.clone());
self.lru.add_front_node(node.clone());
}
node
};
if self.lru.tail.is_none() {
self.lru.add_back_node(node);
}
}
}
/*
Algorithm - Using a doubly linked list and a hashmap
Time O(1)
Space O(n)
*/
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_146() {
let mut cache = LRUCache::new(2);
cache.put(1, 1);
cache.put(2, 2);
assert_eq!(cache.get(1), 1);
cache.put(3, 3);
assert_eq!(cache.get(2), -1);
cache.put(4, 4);
assert_eq!(cache.get(1), -1);
assert_eq!(cache.get(3), 3);
assert_eq!(cache.get(4), 4);
}
}