import java.util.NoSuchElementException; public class DoublyLinkedListImpl<E> { private Node head;// sentinel before first item private Node tail;// sentinel after last item private int size;// number of elements on list public DoublyLinkedListImpl(…