Starting from:

$25

CSCI1933-Project 3 List implementation: ArrayLists vs. LinkedLists Solved

In this project you will implement a list in two different ways: as an ArrayList and as a LinkedList. You will then compare the time complexities of each List method when implemented as an ArrayList and as a LinkedList.

1.1        LinkedList Implementation
The first part of this project will be to implement a linked list. Create a class LinkedList that implements all the methods in List interface. Recall that to implement the List interface and use the generic compatibility with your code, LinkedList should have following structure:

public class LinkedList<T extends Comparable<T implements List<T { ...

}

The underlying structure of a linked list is a node. This means you will have an instance variable that is the first node of the list. The provided Node.java contains a generic node class that you will use for your linked list implementation∗.

Your LinkedList class should have a single constructor:

public LinkedList() { ...

}

that initializes the list to an empty list.

Implementation Details
•    In addition to the methods described in the List interface, the LinkedList class should contain a private class variable isSorted. This should be initialized to true in the constructor (because it is sorted if it has no elements) and updated when the list is sorted, or more elements are added or set. For the purposes of this class, isSorted is only true if the list is sorted in ascending order.

1. INTRODUCTION

•    Initially and after a call to clear(), the size should be zero and your list should be empty.

•    In sort(), do not use an array or ArrayList to sort the elements. You are required to sort the values using only the linked list data structure. You can move nodes or swap values but you cannot use an array to store values while sorting.

•    Depending on your implementation, remember that after sorting, the former first node may not be the current first node.

1.2        Array List Implementation
The second part of this project will be to implement an array list. Create a class ArrayList that implements all the methods in List interface. Recall that to implement the List interface and use the generic compatibility with your code, ArrayList should have following structure:

public class ArrayList<T extends Comparable<T implements List<T { ...

}

The underlying structure of an array list is (obviously) an array. This means you will have an instance variable that is an array. Since our implementation is generic, the type of this array will be T[]. Due to Java’s implementation of generics†, you CANNOT simply create a generic array with:

T[] a = new T[size];

Rather, you have to create a Comparable (since T extends Comparable)‡ array and cast it to an array of type T.

T[] a = (T[]) new Comparable[size];

Your ArrayList class should have a single constructor:

public ArrayList() { ...

}

that initializes the underlying array to a length of 2.

Implementation Details
•    In addition to the methods described in the List interface, the ArrayList class should contain a private class variable isSorted. This should be initialized to true in the constructor (because it is sorted if it has no elements) and updated when the list is sorted, or more

 



specifically because of type erasure



had T not extended Comparable, you would say T[] a = (T[])new Object[size];

2. UNIT TESTS

elements are added or set. For the purposes of this class, isSorted is only true if the list is sorted in ascending order.

•    When the underlying array becomes full, both add methods will automatically add more space by creating a new array that is twice the length of the original array, copying over everything from the original array to the new array, and finally setting the instance variable to the new array. Hint: You may find it useful to write a separate private method that does the growing and copying

•    When calling either remove method, the underlying array should no longer have that spot. For example, if the array was ["hi", "bye", "hello", "okay", ...] and you called remove with index 1, the array would be ["hi", "hello", "okay", ...]. Basically, the only null elements of the array should be after all the data.

•    Initially and after a call to clear(), the size method should return 0. The “size” refers to the number of elements in the list , NOT the length of the array. After a call to clear(), the underlying array should be reset to a length of 2 as in the constructor.

2         Unit Tests
As mentioned at the beginning of the project writeup we will be using a program to evaluate your code. Specifically, we will be using JUnit (unit tests) to test each method that you implement. We may release these tests for you to use when they are ready to so you can check that everything in your classes works properly. Expect to hear more information about this in the near future.

3         Analysis
Now that you have implemented and used both an array list and linked list, which one is better? Which methods in List are more efficient for each implementation?

For each of the 13 methods in List, compare the runtime (Big-O) for each method and implementation. Ignore any increased efficiency caused by the flag isSorted. Include an analysis.txt or analysis.pdf with your submission structured as follows:

Method             ArrayList Runtime LinkedList Runtime Explanation boolean add(T element)            O(...)      O(...)      ... boolean add(int index, T element) O(...)             O(...)      ...

...                                                                                   ...                                           ...                                    ...

Your explanation for each method only needs to be a couple sentences briefly justifying your runtimes.

4. HONORS

4         Honors
Note: This section is required for students in Honors section only. 

You will have two additional methods to implement. Each method must be implemented in both the ArrayList class and the LinkedList class.

1.    getKSmallest(int k) – This method returns a new List object (ArrayList or LinkedList depending on what type of object the method is called on) containting the k smallest elements in the given List. If k is less than 1 then null should be returned. If k is greater than or equal to the size of the list then the entire list should be returned.

2.    getKLargest(int k) – This method returns a new List object (ArrayList or LinkedList depending on what type of object the method is called on) containing the k largest elements in the given List. If k is less than 1 then null should be returned. If k is greater than or equal to the size of the list then the entire list should be returned.

More products