Domanda di colloquio di Google

What is the data structure behind hashmap

Risposta di colloquio

Anonimo

25 ott 2011

array of pointers. if using open chaining it will be array of pointer to linked lists. if using close chaining it will be just arrays.

1