(data structure)
Definition: A collection of items that are randomly accessible by a key, often a string.
See also array.
Note: Implementation: the access method must essentially search for a match. The simplest, but slowest, implementation is to do a linear search over the array for a match.
If that is too slow, and you access the array by number, too, you must create and maintain an index into the array. The index is a dictionary, organized by the content, of indexes into the array.
Author: PEB
If you have suggestions, corrections, or comments, please get in touch with Paul E. Black.
Entry modified Fri Dec 17 11:47:48 2004.
HTML page formatted Wed Oct 26 09:47:12 2005.
Cite this as:
Paul E. Black, "associative array", from
Dictionary of Algorithms and Data
Structures, Paul E. Black, ed.,
NIST.
http://www.nist.gov/dads/HTML/assocarray.html