answersLogoWhite

0

AllQ&AStudy Guides
Best answer

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.

This answer is:
Related answers

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.

View page

An irregular dimensional array is a special type of multi-dimensional array.

First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.

A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.

An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.

Regular array:
array[0] = new array{0, 1, 2}
array[1] = new array{3, 4, 5}
array[2] = new array{6, 7, 8}
array[3] = new array{9, 10, 11}

This regular array is an array of size 4 in which each sub-array is of size 3.


Irregular array:
array[0] = new array{0, 1, 2}
array[1] = new array{3, 4}
array[2] = new array{5, 6, 7}
array[3] = new array{8, 9, 10, 11}

This irregular array is an array of size 4 in which the size of each sub-array is not the same.

View page

Option 1) Use a temporary variable:

int x = array[i];

array[i] = array[i+1];

array[i+1] = x;

Option 2) Use bit operators:

array[i] ^= array[i+1] ^= array[i];

View page

An array literal is a comma-separated list of the elements of an array. An array literal can be used for initializing the elements of an array.

View page

[]temp = array[1]

array[2]=array[1]

array[1]=[]temp

View page
Featured study guide

Open Office

GIMP

VLC Media Player

7-Zip

➡️
See all cards
4.29
7 Reviews
More study guides
No Reviews

1.0
8 Reviews
Search results