<<Up     Contents

Array

An array, also known as a vector or list, is one of the simplest data structures in computer programming. Arrays hold a fixed number of equally sized data elements, generally of the same data type, in a continuous block of memory. Individual elements are accessed by index using integers, as opposed to an associative array.

Arrays permit efficient (constant time, O(1)) random access but not efficient insertion and deletion of elements (which are O(n), where n is the size of the array). This is in contrast to linked lists, which have the opposite trade-off. Consequently, arrays are appropriate for storing data which will be accessed in an unpredictable fashion, and linked lists are best for data accessed sequentially.

Most programming languages have arrays built in.

See also: Monge array

wikipedia.org dumped 2003-03-17 with terodump