Array

Data structure storing elements of the same type in contiguous memory.

array list indexed collection

In computer science, an array is a fundamental data structure used to store multiple elements of the same type in contiguous memory locations. Each element can be accessed using an index, typically starting from zero or one depending on the programming language. Arrays provide efficient random access to elements and are widely used for organizing collections of data.

Built by Tim Jones