InterviewSolution
Saved Bookmarks
| 1. |
What Is The Advantage Of A Hash Table? |
|
Answer» The MAJOR advantage of a HASH table is its speed. Because the hash function is to take a range of key VALUES and transform them into index values in such a way that the key values are distributed randomly ACROSS all the INDICES of a hash table. The major advantage of a hash table is its speed. Because the hash function is to take a range of key values and transform them into index values in such a way that the key values are distributed randomly across all the indices of a hash table. |
|