vote up 2 vote down star

I need to iterate over a queue. www.cplusplus.com says: By default, if no container class is specified for a particular queue class, the standard container class template deque is used.

So can I somehow get to the queue's underlying deque and iterate over it?

Thanks.

flag

3 Answers

vote up 7 vote down check

If you need to iterate over a queue then you need something more than a queue. The point of the standard container adapters is to provide a minimal interface. If you need to do iteration as well, why not just use a deque (or list) instead?

link|flag
vote up 3 vote down

If you need to iterate a queue ... queue isn't the container you need.
Why did you pick a queue?
Why don't you take a container that you can iterate over?

link|flag
vote up -1 vote down

In short: No There is a hack, use vector as underlaid container, so queue::front will return valid reference, convert it to pointer an iterate until <= queue::back

link|flag
But you might as well use a vector directly instead... – graham.reeds Aug 11 at 9:04
1  
You can also directly use deque - that contains all necessary methods as queue but also supports iteration – Dewfy Aug 11 at 9:16

Your Answer

Get an OpenID
or

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