queue

Mar 11, 2012 at 5:53am
guys..can i ask?
what is queue??
Mar 11, 2012 at 6:40am
A queue is a type of STL container. It's like an array but it's size can be changed dynamically. Also you may only add an object to the end of a queue and you may only remove first object in the queue. This is an efficient form of a first-in-first-out container.

http://cplusplus.com/reference/stl/queue/
Mar 11, 2012 at 7:20am
tnx :)
Topic archived. No new replies allowed.