implementato nodeposition con to string e reverse. aggiunto copyright
This commit is contained in:
@@ -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(){
|
||||
|
||||
@@ -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> {
|
||||
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user