From 09c79730149d195adbb6d381eb64c2421a3ba2cd Mon Sep 17 00:00:00 2001 From: hertero Date: Tue, 30 Aug 2022 12:06:05 +0200 Subject: [PATCH] getIndex-Hilfsmethode 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 7e893a2..02db7a1 100644 --- a/SimpleLinkedList/src/solution/SimpleLinkedList.java +++ b/SimpleLinkedList/src/solution/SimpleLinkedList.java @@ -85,4 +85,24 @@ public class SimpleLinkedList extends AbstractSimpleList { } } } + + private Node getIndex(int i) { + + if (i < 0 || size <= i) { + return null; + } + Node currentNode = firstNode; + int currentIndex = 0; + while (currentNode != null) { + if (currentIndex >= i) { + + if (currentNode.getPayload() != null) { + return currentNode; + } + } + currentNode = currentNode.getSuccessor(); + currentIndex++; + } + return null; + } }