Definitions for "Hash Table" Add To Word List
Login or Register  | Word Lists | Search History

an array of linked lists
Helpful?           0
an array that has a prime number of elements
Helpful?           0
an array that holds pointers to entries indexed by hash value
Helpful?           0
an array whose indexes are literals instead of numbers
Helpful?           0
an array with linked lists of duplicates and collisions hanging from it
Helpful?           0
a string-to-value relationship that is similar to an array
Helpful?           0
A hash table is in effect an array, but elements are not added from front to back. The array has a fixed size and some property of the element to add decides where it will be put.
Helpful?           0