Question d’entretien chez Google

What is the data structure behind hashmap

Réponse à la question d'entretien

Utilisateur anonyme

25 oct. 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