Array

The sequentiality of a list is maintained by the order structure of elements in the array(indexes).

List

순서를 가진 데이터의 모임. 데이터는 원소에 포함되고, 원소는 후행자(successor)라 일컫는 다음 원소의 위치(C에서는 포인터)를 포함한다.

An ordered collection of data in which each element contains the location of the next element or elements.

Linear List

각 원소가 유일한 후행자를 갖는 List

Stack

A linear list in which additions and deletions of data are restricted to one end, called the top.

Queue

A linear list in which data can only be inserted at one end, called rear, and deleted from the other end, called front.