$25
Programming Assignment 3 - Linked Lists
Introduction
For this assignment you will be building upon an implementation a singly linked list. A skeletal implementation of a singly linked list is provided as a starting point for the assignment. It was derived from code taken from the text, "Starting out with Java: from control structures through data structures", 3rd edition, Tony Gaddis and Godfrey Muganda.
The Modi cations
Add the following methods to LinkedList:
Do NOT put a "public static void main()" in LinkedList.java. Include an additional file in your project that contains method main. Include enough tests in method main() to demonstrate that all the requirements of the assignment have been met.