From ee62447cba435665dfe6dfc4342288e67486ddd7 Mon Sep 17 00:00:00 2001 From: hertero Date: Tue, 30 Aug 2022 12:07:55 +0200 Subject: [PATCH] get(i)-/set(i,e)-/remove(i)-Methoden implementiert --- .../src/solution/SimpleLinkedList.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) 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; + } }