|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
| |
For
an absolute ordered list, what
are the
|
|
|
operations?
|
|
|
|
|
insert,
retrieve, remove, create, destroy, display
|
|
|
|
|
insert,
retrieve, and remove would all require the client
|
|
|
program
to supply a position number
|
|
|
|
|
notice
we are not inserting in sorted order, or retrieving
|
|
|
by a
value
|
|
|
|
|
instead
we insert at an absolute position, retrieve the data
|
|
at
that position, remove data at a given position --- not
|
|
|
affecting
the rest of the list!
|
|
|
|