Please enable JavaScript.
Coggle requires JavaScript to display documents.
M5 (Abstract Data Types and Data Structures, Fundamental Data Structures),…
-
Lists
-
We define a list to be a finite, ordered sequence of data items known as elements.
-
A list is said to be empty when it contains no elements. The number of elements currently stored is called the length of the list.
The beginning of the list is called the head, the end of the list is called the tail.
-