CSSE 230: LinkedLists
Implement a doubly linked list as specified in the Java
LinkedList class.
- Please ensure your code is well-written and takes maximum
advantage of code-reuse.
- Please ensure your code follows the runtime requirements. While I have
some test-code that attempts to assess the runtimes, I will inspect
all code to verify runtimes.
- The following methods should run in constant time.
- boolean add(int e)
- void addFirst(int e)
- void addLast(int e)
- void clear()
- T element()
- T getFirst()
- T getLast()
- boolean offer(int e)
- boolean offerFirst(int e)
- boolean offerLast(int e)
- T peek()
- T peekFirst()
- T peekLast()
- T poll()
- T pollFirst()
- T pollLast()
- T pop()
- void push(int e)
- T remove()
- T removeFirst()
- T removeLast()
- int size()
- descendingIterator()
- iterator()
- hasNext(), next() and remove() in both of the iterators
- The following methods should run at worst in N+1 time
- contains(T element)
- indexOf(T element)
- lastIndexOf(T element)
- remove(T element)
- removeFirstOccurence(T element)
- removeLastOccurence(T element)
- toArray()
- toString()
- clone(), ensure it returns a shallow copy.
- The following methods should run at worst in (N/2)+1 time.
- add(int index, T Element)
- get(int index)
- remove(int index)
- Ensure DoublyLinkedList uses Generics and implements Iterable.
- The iterators should:
- Have the remove() method implemented
- be fail-fast
- throw the proper exceptions
- Here is the unit test code I will be using to score your
code. Please ensure your code works with it.