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

@@ -9,7 +9,8 @@ import exceptions.EmptyStackException;
* Date: 05/03/14
* Time: 0.12
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class ArrayStack<E> implements Stack<E> {

View File

@@ -9,7 +9,8 @@ import stack.utility.Node;
* Date: 05/03/14
* Time: 0.12
*/
//Copyright (c) 2003 Brown University, Providence, RI
//Additional modifications and methods by xgiovio
public class NodeStack<E> implements Stack<E> {