array abstract data type

The array abstract data type, is a linear rank-based adt implemented internally in almost all public programming lanugages.

Operations

Value RetrieveAt ( Rank rank )
Retrieves the value stored at the given rank (index)
StoreAt ( Rank rank , Value value )
Stores the given value in the given rank (index) overwriting old value.

Data Structures

one dimensional array
simple one dimensional array