Practice: LinkedList

Take out a piece of paper. We’ll be programming on paper.

Problem 1

public class LinkedList<E> implements List211<E> {
  /** Holds the head of the list. */
  private LinkedNode<E> head;
  /** The size of the list. */
  private int size;

  // Your code goes here.

}

Problem 2

Show me your code before you leave