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

a data structure that provides couple of major improvements when compared with others, like linked list, or basic array
Helpful?           0
a lookup structure which aims to make finding a particular item more efficient
Helpful?           0
an associative array, one whose elements are indexed by a key value rather than by an ordinal index
Helpful?           0
an efficient form of Dictionary which relies on a hashing function, which generates an integer hash code for each key and uses standard hashing techniques to ensure speedy access
Helpful?           0
an unbounded array where each element is identified with a unique key
Helpful?           0
a storage array of items, each representing a key/value pair
Helpful?           0
a table containing key and value pairs
Helpful?           0
class yes a Map, a synchronised HashMap. Allows unordered lookup by key, usually a String. Note, this is spelled Hashtable not HashTable.
Helpful?           0
An object that is like a dictionary or an associative array. A hashtable stores and retrieves elements using key values called hashcodes. See hashcode.
Helpful?           0