-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLruCache.kt
58 lines (45 loc) · 1.67 KB
/
LruCache.kt
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
/*
This problem was asked by Google.
Implement an LRU (Least Recently Used) cache. It should be able to be initialized with a cache size n, and contain the following methods:
set(key, value): sets key to value. If there are already n items in the cache and we are adding a new item, then it should also remove the least recently used item.
get(key): gets the value at key. If no such key exists, return null.
Each operation should run in O(1) time.
*/
import java.util.*
class LRUEntry(val key: Int, var value: Int)
class LRUCache(val capacity: Int) {
val entries = HashMap<Int, LRUEntry>()
val leastRecentUsed = LinkedList<LRUEntry>()
fun get(key: Int): Int {
if (!entries.contains(key)) {
return -1
}
return evictEntry(key).value
}
private fun evictEntry(key: Int): LRUEntry {
val entry = entries.get(key)!!
leastRecentUsed.remove(entry)
leastRecentUsed.add(entry)
return entry
}
fun put(key: Int, value: Int) {
if (entries.contains(key)) {
val entry = evictEntry(key)!!
entry.value = value
} else if (entries.size < capacity) {
addNewEntry(key, value)
} else {
replaceLeastUsedWithNewEntry(key, value)
}
}
private fun replaceLeastUsedWithNewEntry(key: Int, value: Int) {
val leastRecentEntry = leastRecentUsed.pollFirst()
entries.remove(leastRecentEntry.key)
addNewEntry(key, value)
}
private fun addNewEntry(key: Int, value: Int) {
val entry = LRUEntry(key, value)
entries.put(key, entry)
leastRecentUsed.add(entry)
}
}