Mazes #119

Merged
StevenRS11 merged 10 commits from mazes into mazes 2013-12-31 00:07:52 +00:00
Showing only changes of commit 27b21f6674 - Show all commits

View File

@@ -226,6 +226,7 @@ public class LinkedList<T> implements Iterable<T>
Node<T> addition = new Node(node, node.next, data, this);
node.next = addition;
addition.next.prev = addition;
size++;
return addition;
}