summaryrefslogtreecommitdiff
path: root/projects/project2_LInfiniteInteger/LStack.java
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-02-06 11:41:36 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-02-06 11:41:36 -0500
commit89cdf3efb49335e7c07a68a5a64657eeec2288a6 (patch)
treecdc0fd8165e65b1637fa54cac11c932acefc8a89 /projects/project2_LInfiniteInteger/LStack.java
downloadcoe0445-89cdf3efb49335e7c07a68a5a64657eeec2288a6.tar.gz
coe0445-89cdf3efb49335e7c07a68a5a64657eeec2288a6.tar.bz2
coe0445-89cdf3efb49335e7c07a68a5a64657eeec2288a6.zip
Inital commitHEADmaster
Diffstat (limited to 'projects/project2_LInfiniteInteger/LStack.java')
-rw-r--r--projects/project2_LInfiniteInteger/LStack.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/projects/project2_LInfiniteInteger/LStack.java b/projects/project2_LInfiniteInteger/LStack.java
new file mode 100644
index 0000000..15e9bed
--- /dev/null
+++ b/projects/project2_LInfiniteInteger/LStack.java
@@ -0,0 +1,66 @@
+
+public class LStack<T> implements StackInterface<T>
+{
+ private Node firstNode;
+
+ public LStack()
+ {
+ firstNode = null;
+ }
+
+ public void push(T anEntry)
+ {
+ Node newNode = new Node(anEntry, firstNode);
+ firstNode = newNode;
+ }
+
+ public T pop()
+ {
+ T result = null;
+
+ if(firstNode != null)
+ {
+ result = firstNode.data;
+ firstNode = firstNode.next;
+ }
+
+ return result;
+ }
+
+ public T peek()
+ {
+ if(firstNode != null)
+ {
+ return firstNode.data;
+ }
+
+ return null;
+ }
+
+ public boolean isEmpty()
+ {
+ return firstNode == null;
+ }
+
+ public void clear()
+ {
+ firstNode = null;
+ }
+
+ private class Node
+ {
+ private T data;
+ private Node next;
+
+ private Node(T aData)
+ {
+ this(aData, null);
+ }
+
+ private Node(T aData, Node nextNode)
+ {
+ data = aData;
+ next = nextNode;
+ }
+ }
+}