Java Collections (LIFO Structure)
Deque
, ArrayDeque
, & LinkedList
While this was asked a while ago it might be wise to provide a JDK6+ answer which now provides a Deque (deck) interface which is implemented by the ArrayDeque data structure and the LinkedList was updated to implement this interface.
ConcurrentLinkedDeque
& LinkedBlockingDeque
Specialised forms for concurrent access also exist and are implemented by ConcurrentLinkedDeque and LinkedBlockingDeque.
LIFO versus FIFO
The one thing that is great about a deque is that it provides both LIFO (stack) and FIFO (queue) support it can cause confusion as to which methods are for queue operations and which are for stack operations for newcomers.
IMHO the JDK should have a Stack
interface and a Queue
interface that could still be implemented by the likes of ArrayDeque but only expose the subset of methods required for that structure, i.e. a LIFO could define pop()
, push()
and peek()
, then in the context of
LIFO<String> stack = new ArrayDeque<>();
only stack operations are exposed which stops someone accidentally calling add(E) when push(E) was intended.
I realize I'm late to the party here, but java.util.Collections (Java 7) has a static 'asLifoQueue' that takes a Deque argument and returns (obviously) a LIFO queue view of the deque. I'm not sure what version this was added.
http://docs.oracle.com/javase/7/docs/api/java/util/Collections.html#asLifoQueue(java.util.Deque)
There's actually a Stack class: http://java.sun.com/j2se/1.5.0/docs/api/java/util/Stack.html
If you don't want to use that, the LinkedList class (http://java.sun.com/j2se/1.5.0/docs/api/java/util/LinkedList.html) has addFirst
and addLast
and removeFirst
and removeLast
methods, making it perfect for use as a stack or queue class.