MCPcopy Create free account
hub / github.com/Berkeley-CS61B/skeleton-sp23 / Node

Method Node

lab08/src/hashmap/ULLMap.java:90–94  ·  view source on GitHub ↗

Stores KEY as the key in this key-value pair, VAL as the value, and NEXT as the next node in the linked list.

(K k, V v, Node n)

Source from the content-addressed store, hash-verified

88 * NEXT as the next node in the linked list.
89 */
90 Node(K k, V v, Node n) {
91 key = k;
92 val = v;
93 next = n;
94 }
95
96 /**
97 * Returns the Node in this linked list of key-value pairs whose key

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected