In computer science, a dynamic array, growable array, resizable array, dynamic table, or array list is a data structure that can be resized and allows elements to be added or removed. It is supplied with standard libraries in many modern mainstream programming languages.
A dynamic array is not the same thing as a dynamically-allocated array, which is a fixed-size array whose size is fixed when the array is allocated.
The simplest dynamic array is...
more
Read article at Wikipedia
Dynamic array
Similar topics in Freebase
-
Bit array
A bit array (also known as a bitmap, a bitset, or a bitstring) is an array data structure which compactly stores individual bits (boolean values). It implements a simple set data structure storing a subset of {1,2,...,n} and is effective at exploiting bit-level parallelism in hardware to perform...