Class EDU.auburn.VGJ.algorithm.shawn.Queue
All Packages Class Hierarchy This Package Previous Next Index
Class EDU.auburn.VGJ.algorithm.shawn.Queue
java.lang.Object
|
+----EDU.auburn.VGJ.algorithm.shawn.Queue
- public class Queue
- extends Object
Class to implement a simple queue of integers.
Here is the source.
-
Queue()
-
-
isEmpty()
-
-
pop()
-
-
push(int)
-
Queue
public Queue()
push
public int push(int item)
pop
public int pop()
isEmpty
public boolean isEmpty()
All Packages Class Hierarchy This Package Previous Next Index