Browse Source

get(i)-/set(i,e)-/remove(i)-Methoden implementiert

vollständige_und_weitere_testate
hertero 3 years ago
committed by chris
parent
commit
ee62447cba
  1. 20
      SimpleLinkedList/src/solution/SimpleLinkedList.java

20
SimpleLinkedList/src/solution/SimpleLinkedList.java

@ -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;
}
}

Loading…
Cancel
Save