Google interview question

What is the data structure behind hashmap

Interview Answer

Anonymous

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