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 @Override
public void forAll(ICommand<E> command) { public void forAll(ICommand<E> command) {
if(command != null) { if (command != null) {
Node<E> aktuellerKnoten = ersteKnoten; Node<E> currentNode = firstNode;
while(aktuellerKnoten != null) { while (currentNode != null) {
command.execute(aktuellerKnoten.getPayload()); command.execute(currentNode.getPayload());
aktuellerKnoten = aktuellerKnoten.getSuccessor(); currentNode = currentNode.getSuccessor();
} }
} }
} }
} }

Loading…
Cancel
Save