Data Structures
Statically Allocated array...
private:
data array[SIZE];
int number_of_items;
Absolute lists:
direct access (insert at pos12 :
array[11] = ...
remove only alters one element (resetting it?)
problem: memory limitations (fixed size)
problem: must guess at the SIZE at compile time