Returns a table to back our hash table. As per the comment above, this table can be an array of Collection objects BE SURE TO CALL THIS FACTORY METHOD WHEN CREATING A TABLE SO THAT ALL BUCKET TYPES ARE OF JAVA.UTIL.COLLECTION @param tableSize the size of the table to create
(int tableSize)
| 82 | * @param tableSize the size of the table to create |
| 83 | */ |
| 84 | private Collection<Node>[] createTable(int tableSize) { |
| 85 | return null; |
| 86 | } |
| 87 | |
| 88 | // TODO: Implement the methods of the Map61B Interface below |
| 89 | // Your code won't compile until you do so! |
nothing calls this directly
no outgoing calls
no test coverage detected