Array data structure

data structure holding elements in a contiguous memory block
(Redirected from Array)

In programming languages, an array is a way of storing several items (such as integers). These items must have the same type[1] (only integers, only strings, ...) because an array can not store different kinds of items. Every item in an array has a number so the programmer can get the item by using that number.[1][2] This number is called the index.[2][3] In most programming languages, the first item has index 0, the second item has index 1 and so on.

When the programmer creates an array, they must give the size of the array. This is the number of items that can be stored in the array. If the programmer wants to store more items, then they must create a new array. This is because the size of an array can not be changed.

Arrays in C change

In the programming language C, arrays can be created like this:

int array[5];

This creates an array of integers and it can store 5 integers. The programmer can now store integers in the array by doing:

array[0] = 1;
array[1] = 18;
array[2] = 5;
array[3] = 33;
array[4] = 50;

The programmer can use a value in the array like this:

int k = 3 + array[3];  // k is now 3 + 33 = 36

Arrays in Java change

In the programming language Java, arrays can be created like this:

int[] array = new int[5];

This creates an array of integers and it can store 5 integers. The programmer can now store integers in the array by doing:

array[0] = 1;
array[1] = 18;
array[2] = 5;
array[3] = 33;
array[4] = 50;

The programmer can use a value in the array like this:

int k = 3 + array[3];  // k is now 3 + 33 = 36

Sources change

  1. 1.0 1.1 "array from FOLDOC". Free On-Line Dictionary Of Computing. October 12, 2007. Retrieved December 19, 2022.
  2. 2.0 2.1 Paul E. Black (November 16, 2016). "array". Dictionary of Algorithms and Data Structures. Retrieved December 19, 2022.
  3. David Darling (August 21, 2021). "array". Encyclopedia of Science. Retrieved December 19, 2022.