Pregunta de entrevista de Google

What is the data structure behind hashmap

Respuesta de la entrevista

Anónimo

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