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

Method createNode

lab08/src/hashmap/MyHashMap.java:49–51  ·  view source on GitHub ↗

Returns a new node to be placed in a hash table bucket

(K key, V value)

Source from the content-addressed store, hash-verified

47 * Returns a new node to be placed in a hash table bucket
48 */
49 private Node createNode(K key, V value) {
50 return null;
51 }
52
53 /**
54 * Returns a data structure to be a hash table bucket

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected