How to use queue in Java 1.6 as LIFO? PLease Provide Example Code. Thanks

link|improve this question

52% accept rate
is this homework 'implement a LIFO using queue' question? otherwise I see no reason not to use java.util.Stack – amit Aug 15 '11 at 11:03
Queue is basically based on FIFO, you rather look for Stack which behaves like LIFO – Talha Ahmed Khan Aug 15 '11 at 11:04
I think yOU didn't check properly(JDK 1.6).. There is no Stack in JDK 1.6.. – Syed Raza Aug 15 '11 at 11:05
5  
java.util.Stack<E> (points to Java 6 API) – Andreas_D Aug 15 '11 at 11:09
3  
@Syed I don't know if it's your intention, but you are coming off as very rude, which is not a good place to start when you're asking people to help you for free. I would also suggest you work at improving your accept-rate a bit. You have a number of people here pointing you in the right direction (java.util.Stack) so maybe you should follow up on that instead of dismissing all of them out of hand. – pap Aug 15 '11 at 12:03
show 1 more comment
feedback

closed as not a real question by Qwerky, rsp, ho1, Tim Post Aug 18 '11 at 16:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 5 down vote accepted

Check the java.util.Stack class. It does what you ask for. Also, if you don't want to use a Stack, you can use a LinkedList as it contains methods like addFirst, addLast, removeFirst, removeFast (so "treat" it like a LIFO).

link|improve this answer
2  
@Syed Raza, all my links points to the Java 6 Javadocs. What are you refering to? I'm running JDK 1.6.0_25 (64 Bit) and there is a java.util.Stack class. – The Elite Gentleman Aug 15 '11 at 11:06
There's also Stack class on JDK 7 (and yes, I have it on my machine, JDK 1.7.0) :-) – The Elite Gentleman Aug 15 '11 at 11:14
feedback

Why use a queue as LIFO when there is a Stack class http://java.sun.com/j2se/1.5.0/docs/api/java/util/Stack.html

link|improve this answer
2  
@Syed Raza: Stack is since JDK1.0. what is the problem with this answer? – amit Aug 15 '11 at 11:05
1  
@Syed Raza I think YOU don't articulate your self well enough. There is a Stack class in JDK 1.6; I fail to see your problem. – Silfverstrom Aug 15 '11 at 11:10
feedback

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