|
|
@ -105,4 +105,24 @@ public class SimpleLinkedList<E> extends AbstractSimpleList<E> { |
|
|
|
} |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
public E get(int i) throws IndexOutOfBoundsException { |
|
|
|
|
|
|
|
return getIndex(i).getPayload(); |
|
|
|
} |
|
|
|
|
|
|
|
public void set(int i, E e) throws IndexOutOfBoundsException { |
|
|
|
|
|
|
|
getIndex(i).setPayload(e); |
|
|
|
} |
|
|
|
|
|
|
|
public boolean remove(int i) throws IndexOutOfBoundsException { |
|
|
|
|
|
|
|
if (getIndex(i) != null) { |
|
|
|
getIndex(i).setPayload(null); |
|
|
|
size--; |
|
|
|
return true; |
|
|
|
} |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|