Big Java & Java Concepts example project "implist"

You can use this project as follows:

 - invoke the main method of the driver class ListTester by 
 right-clicking on the class representation and selecting the main method.
 - interactive create LinkedList
 - interactively add values into LinkedList.
 - inspect and experiment with other methods

This project illustrates concepts covered in Big Java & Java Concepts, Chapter 20 
"An Introduction to Data Structures".

 - to learn how to use linked lists provided in the standard library
 - to be able to use iterators to transverse linked lists
 - to understand the implementation of linked lists
 - to distinguish between abstract and concrete data types
 - to know the efficiency of fundamental operations of lists and arrays
 - to become familiar with the stack and queue types