* - null, meaning there is no successor (this is the last node) */ Node<E> next; Node(E x) { item = x; } } private final int capacity; transient Node<E> head; private transient Node<E> last; private final AtomicInteger count = new AtomicInteger(); private final ReentrantLock put...