-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
100 lines (90 loc) · 1.95 KB
/
mod.ts
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
export { LRUCache } from './lru.ts'
export { LFUCache } from './lfu.ts'
interface Node<T, U> {
key: U
value: T
visited: boolean
prev?: Node<T, U>
next?: Node<T, U>
}
export class SieveCache<T, U = string> {
capacity: number
cache: Map<U, Node<T, U>> = new Map()
head?: Node<T, U>
tail?: Node<T, U>
hand?: Node<T, U>
constructor(capacity: number) {
this.capacity = capacity
}
private addToHead(node: Node<T, U>) {
if (this.head) {
node.next = this.head
this.head.prev = node
}
this.head = node
if (this.tail === undefined) {
this.tail = node
}
}
private removeNode(node: Node<T, U>) {
if (node.prev) {
node.prev.next = node.next
if (this.hand === node) {
this.hand = node.prev
}
} else {
this.head = node.next
}
if (node.next) {
node.next.prev = node.prev
} else {
this.tail = node.prev
}
}
private evict() {
let node = this.hand || this.tail
while (node && node.visited) {
node.visited = false
node = node.prev || this.tail
}
if (node) {
this.hand = node.prev
this.cache.delete(node.key)
this.removeNode(node)
}
}
set(key: U, value: T) {
if (this.cache.has(key)) {
const node = this.cache.get(key)!
node.value = value
node.visited = true
return
}
if (this.cache.size >= this.capacity) {
this.evict()
}
const newNode = {
key,
value,
visited: false
}
this.addToHead(newNode)
this.cache.set(key, newNode)
}
get(key: U) {
if (this.cache.has(key)) {
const node = this.cache.get(key)!
node.visited = true
return node.value
}
}
toString() {
let ret = []
let current = this.head
while (current) {
ret.push(`${this.hand === current ? '>' : ' '} [${current.visited ? 'X' : ' '}] ${current.key}`)
current = current.next
}
return ret.join('\n')
}
}