Home

Project 3 - Created Adaptive List Object

Technology: Java, Eclipse

For this project, I created a linked-list data structure in Java, similar to an ArrayList.
The list worked by creating a node object for every item and linking the nodes together with
the fields in the node objects. The list is generic so it can be used with any type of object
in Java. Also, it has many built-in function such as clear(), add(), and contains().

Project Files

test.java (click on image to download file):

Output of test.java:

AdaptiveList.java (click on image to download file):