diff --git a/SimpleLinkedList/src/solution/SimpleLinkedList.java b/SimpleLinkedList/src/solution/SimpleLinkedList.java index 02db7a1..cb4d908 100644 --- a/SimpleLinkedList/src/solution/SimpleLinkedList.java +++ b/SimpleLinkedList/src/solution/SimpleLinkedList.java @@ -105,4 +105,24 @@ public class SimpleLinkedList extends AbstractSimpleList { } 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; + } }