Take out a piece of paper and put your name on the upper right corner.

public class LinkedQueue<E> implements Queue211<E> {
  private LinkedNode<E> front;
  private LinkedNode<E> rear;
  private int size;
  ...
  public boolean offer(E e) { // Does not throw exception
    // your code here.
  }

  public E poll() { // Does not throw exception
    // your code here.
  }
  ...
}

Time remaining: