 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
| • |
Dynamically
Allocated array...
|
|
private:
|
|
|
data * array;
|
|
int number_of_items;
|
|
int size_of_array;
|
|
| • |
Absolute
lists:
|
|
|
|
– |
direct
access (insert at pos12 : array[11]
= ...
|
|
|
– |
remove
only alters one element (resetting it?)
|
|
|
– |
problem:
memory limitations (fixed size)
|
|