Homework 6, Part A: Doubly Linked Lists

Here, you will create your own implementation of a doubly linked list. A doubly linked list is a linked list in which every node maintains a reference to the item next in the list, as well as the item previous in the list:

Task 0: Getting Settled

Copy over the LinearList<T> interface from the in-class exercise. Your linked list should implement this interface.

Task 1: Doubly Linear Node

Create a class, DoublyLinearNode<T>, to represent a node in your linked list. You can follow the LinearNode from the in-class exercise for inspiration.

Task 2: Implementing the Doubly Linked list

Create a class, DoublyLinkedList<T> that uses your DoublyLinearNode<T> to implement the LinearList<T> interface. Before implementing each method, draw a memory diagram to make sure you know what pointer manipulations you plan to use. You may find it helpful to draw multiple versions of these memory diagrams corresponding to lists of various sizes.

Additionally, in your implementation, please:

Hints: For both insert and remove, you may want to break your code into several cases:

Task 3: Testing

Please test your DoublyLinkedList<T> in a main method belonging to the same class. You can save your tests in DoublyLinkedListTests.txt. There’s no need to test your DoublyLinearNode<T>.


Homework 6, Part B: Implement a Queue

Here, you will implement a queue using your implementation of the doubly linked list above.

Task 0: Getting Settled

Your queue should implement the Queue<T> interface:

public interface Queue<T> {
    // Adds element to rear of the queue
    public void enqueue(T element);

    // Removes and returns element at front of queue
    public T dequeue();

    // Return reference to first element without removing
    public T first();

    // Returns true if queue contains no elements
    public boolean isEmpty();

    // Returns number of elements
    public int size();

    // Returns string representation
    public String toString();
}

Create a file for it in your BlueJ project.

Task 1: Implement the queue

Create a class, LinkedQueue<T> that implements the Queue<T> interface. You should use your DoublyLinkedList<T> in your implementation. Before starting to code, determine whether LinkedQueue<T> should have an is-a or has-a relationship with DoublyLinkedList<T>.

Task 2: Test your queue implementation

Write your tests in a main method in the same file as LinkedQueue<T>. Please save your tests in LinkedQueueTests.txt.


Submission Checklist