implementato nodeposition con to string e reverse. aggiunto copyright

This commit is contained in:
2014-03-25 23:49:13 +01:00
parent 6a80293d09
commit 148933ac58
18 changed files with 393 additions and 2 deletions

View File

@@ -8,6 +8,8 @@ import exceptions.EmptyQueueException;
* Date: 10/03/14
* Time: 15:49
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class ArrayQueue<E> implements Queue<E> {
public ArrayQueue(){

View File

@@ -11,6 +11,8 @@ import java.awt.image.AreaAveragingScaleFilter;
* Date: 17/03/14
* Time: 14:08
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class NodeQueue<E> implements Queue<E> {

View File

@@ -8,6 +8,8 @@ import exceptions.EmptyQueueException;
* Date: 10/03/14
* Time: 15:45
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public interface Queue<E> {
public void enqueue (E element);