Browse Source

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

T_SS18_List
hertero 3 years ago
parent
commit
2580a3214a
  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