I think they are very similar...And when do we need to use stack or queue, why not just use ArrayList or LinkedList to replace them?
|
closed as not a real question by E.J. Brennan, Dan Grossman, Mitch Wheat, Rubens Farias, Merlyn Morgan-Graham Jul 16 '11 at 1:05
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. For help clarifying this question so that it can be reopened, see the FAQ.
|
|
||||
|
|
|
Well, one reason is that there are variants of Queues that it is convenient to be able to swap in, like PriorityQueues. They fulfill the same interface but behave differently. I don't think there is anything like that for Stacks, or at least it isn't used nearly as often. You would not be able to simulate a Priority Queue using just an ArrayList. Additionally, regarding your second question, you should probably use a stack or queue when that is what you're using semantically. That is, if you are doing something like graph traversal, it helps to be very explicit about the sort of data structure you're using. |
|||
|
|