MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Node

Method Node

Java/Leetcode/LeetcodeLruCache.java:58–61  ·  view source on GitHub ↗
(int key, int value)

Source from the content-addressed store, hash-verified

56 int key, value;
57 Node next, prev;
58 Node(int key, int value){
59 this.key = key;
60 this.value = value;
61 }
62}
63

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected