Data structure : Array and List

Morgan Kang
Aug 20, 2021

Array

“Array is a data structure that lists to data without empty space.”

Array has difference type which by dimension.

For example, One-dimensional array is lists that data without empty space at straight line.

Two-dimensional array is lists that data without empty space at width and length like square.

And third-dimensional array is lists that data without empty space at width, length and height like cube.

List

“List is a data structure that lists to data with order(sequence).”

The list data structure is manage listed data with order(squence), such as Array.

But list data structure and array data structure have difference which the listed data have pointer that connect each other, therefore, each data can be position that separate.

--

--