Implementato parzialmente l'arraysequence

This commit is contained in:
2014-03-30 17:43:15 +02:00
parent c25afb02a2
commit 5cc6be1a96
4 changed files with 214 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
package position;
import java.util.Iterator;
import exceptions.*;
import stack.utility.Node;
import position.utility.DNode;
/**
* Realization of a PositionList using a doubly-linked list of nodes.

View File

@@ -1,5 +1,7 @@
package position;
package position.utility;
import exceptions.*;
import position.Position;
/**
* A simple node class for a doubly-linked list. Each DNode has a
* reference to a stored element, a previous node, and a next node.