Introduction to Data Structures assignment.
This code is posted with instructor's permission and adheres to Metropolitan State University's policy.
Assignment Summary:
- Implement a bag collection using a Linked List.
- Use the same "Thing" created for Arrays assignment (I used Guitars) and change previous implementation as necessary.
- ThingNode: a linked list Node where the data part is of type "Thing".
- ThingLinkedBag: a collection of "Things" in which the elements are stored in an unordered linked list.
- ThingLinkedBagDriver: includes a main method to test the functionality of your collection.
- Comment each class using Javadocs style.