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

Struct DLNode

tasks/146.go:28–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28type DLNode struct {
29 prev *DLNode
30 next *DLNode
31 key int
32 value int
33}
34
35func Constructor(capacity int) LRUCache {
36 lru := LRUCache{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected