vote up 2 vote down star
1

Hi, I am looking in the Collections framework of Java for a LIFO Structure (Stack) without any success. Basically I want a really simple stack; my perfect option would be a Deque, but I am in Java 1.5.

I would like not to have to add another class to my structure but I am wondering if that is possible:

  1. Is there any class in the Collections framework (1.5) that does the job?

  2. If not, is there any way to turn a Queue in a LIFO Queue (aka Stack) without reimplementation?

  3. If not, which Interface or class should I extend for this task? I guess that keep the way that the guys of Sun have made with the Deque is a good start.

Thanks a lot.

EDIT: I forgot to say about the Stack class: I have my doubts about this class when I saw that it implements the Vector class, and the Vector class is a little bit obsolete, isn't it?

flag

The main issue with Vector is that all access is synchronized, whether you need it or not. It is as "up-to-date" as any of the other collections, but got a bad reputation due to the synchronization issue. – Ken Gentle Nov 19 '08 at 16:56

4 Answers

vote up 13 vote down check

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.

link|flag
2  
LinkedList also then provides the definition of a Deque, which is your desired collection. – Spencer K Nov 19 '08 at 16:32
1  
Yes, I think that LinkedList is the one that i was looking for, cause in my first look at it i didnt realise about the Addfirst and removeFirst methods. Thanks a lot. – David Santamaria Nov 19 '08 at 16:51
vote up 0 vote down

Stack class is slowly: methods are synchronized + Stack extends synchronized Vector

link|flag
vote up -3 vote down

Look in the google collections or the apache collections.
The google version supports generics.

link|flag
vote up 3 vote down

There is a Stack class in the API. Will this meet your needs?

link|flag
Sorry I forgot to Say about the Stack Class and my opinion about it, but I am thinking that probably is a better solution than implement my own class. isnt it? – David Santamaria Nov 19 '08 at 16:35
Don't use the Stack class. It extends Vector, which is retained for backwards compatibility only. – erickson Nov 19 '08 at 17:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.