Project Eight (initial draft)

Due: Tuesday 3/30/14 @ 11:55
Points: 30

Objective:

  1. Become familiar with the dynamic allocation of array storage

  2. Become familiar with Liked Lists

  3. Become familiar with referencing objects

  4. Become familiar with the computational and space


Description:
Create an abridged version of a Linked List class that mimics Java's Linked List. The project should contain a Datum class that describes a single data point and myLList that defines the object Linked List with all of its instance variables and method.

(30 points) Project requirements:

Your program should contain two objects with the following criteria:

Submission Notes:
Your final submission should consists of at least two .java files: myLList.java and Datum.java. You are free to include whatever main.java files that you used to test your work. Here is my LList project (winzip version) from class. You are free to use this as your starting point.

Example main:

You should be responsible for creating and testing your own main. I will provide one simple one just to make sure that everyone is using the correct names.