Pergunta de entrevista da empresa Google

What is the data structure behind hashmap

Resposta da entrevista

Sigiloso

25 de out. 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