1. public LinkedList() {
    2. }
    1. public LinkedList(Collection<? extends E> c) {
    2. this();
    3. addAll(c);
    4. }