Browse Source

forAll-Methode implementiert

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

9
SimpleLinkedList/src/solution/SimpleLinkedList.java

@ -78,12 +78,11 @@ 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();
Node<E> currentNode = firstNode;
while (currentNode != null) {
command.execute(currentNode.getPayload());
currentNode = currentNode.getSuccessor();
}
}
}
}

Loading…
Cancel
Save