|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
| • |
The
basic operations that define an ADT Table
|
|
are: (notice, various search keys!!)
|
|
|
|
•
Create an empty table (e.g., Create(Table))
|
|
|
|
•
Insert an item into the table (e.g.,
|
|
|
Insert(Table,Newdata))
|
|
|
|
•
Delete an item from the table (e.g.,
|
|
|
Delete(Table,
Key))
|
|
|
|
•
Retrieve an item from the table (e.g.,
|
|
|
Retrieve(Table,
Key, Returneddata))
|
|
|
|