Array
In programming, a list of data values, all of the same type, any element of which can be referenced by an expression consisting of the array name followed by an indexing expression. Arrays are part of the fundamentals of data structures, which, in turn, are a major fundamental of computer programming.
In computer science, the array is a contiguous sequence of one-kind values of finite size. Arrays store some amount of data of the same type (integers, floating-point numbers, characters, etc.) and have a set size, which makes them the most restrictive among any other data structures like C++ std::vectors that can grow in size, dictionaries (hashmaps) that can access values with key-value pairs and insert new ones on demand, or trees that can represent close relationships between entries.
It is one of the most efficient and primitive ways to store data and hence is often used under the hood to implement all other more complex structures. Arrays decay to pointers. Because of this, references to array can be carried with a single pointer, and items can be accessed in constant time with pointer arithmetic.
Nonetheless, arrays are not always preferred over other more flexible containers, and often the use of lists is more viable due to software extensibility and ease of development. [2, 48-56]
⠀ Dictionary of Computer and Internet Terms (Vol. 1) John C. Rigdon, 2016 – 1471 c. – 92
National Institute of Standards and Technology. (2016). Dictionary of Algorithms and Data Structures. Retrieved from: https://xlinux.nist.gov/dads/HTML/array.html
Scott Mayers. (2001). Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library. Boston, the USA: Addison-Wesley Professional.