Browse Source

forAll-Methode implementiert

vollständige_und_weitere_testate
hertero 3 years ago
committed by chris
parent
commit
9a467af26f
  1. 13
      SimpleLinkedList/src/solution/SimpleLinkedList.java

13
SimpleLinkedList/src/solution/SimpleLinkedList.java

@ -77,13 +77,12 @@ public class SimpleLinkedList<E> extends AbstractSimpleList<E> {
@Override
public void forAll(ICommand<E> command) {
if(command != null) {
Node<E> aktuellerKnoten = ersteKnoten;
while(aktuellerKnoten != null) {
command.execute(aktuellerKnoten.getPayload());
aktuellerKnoten = aktuellerKnoten.getSuccessor();
if (command != null) {
Node<E> currentNode = firstNode;
while (currentNode != null) {
command.execute(currentNode.getPayload());
currentNode = currentNode.getSuccessor();
}
}
}
}
}

Loading…
Cancel
Save