InterviewSolution
Saved Bookmarks
| 1. |
Explain a hash table. |
|
Answer» Hash tables are usually defined as data structures that store data in an associative manner. In this, data is GENERALLY stored in array format, which ALLOWS each data VALUE to have a unique index value. Using the hash technique, a hash table generates an index into an array of SLOTS from which we can retrieve the desired value. |
|