MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / LRUCache

Struct LRUCache

tasks/146.go:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22type LRUCache struct {
23 cacheMap map[int]*DLNode
24 capacity int
25 head, tail *DLNode
26}
27
28type DLNode struct {
29 prev *DLNode

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected