Table ADTs
Tables manage data by its value!
As with the other ADT's we have talked about,
table operations can be implemented using arrays
or linked lists.
Valued Oriented ADTs allow you to:
-- insert data containing a certain VALUE into a data
structure
-- delete a data item containing a certain VALUE from
a data structure
-- retrieve data and find out if the structure is empty or
full.