Daily bit(e) of C++ | std::queue
Daily bit(e) of C++ #251, The FIFO queue container adapter: std::queue.
The std::queue is a container adapter that implements the interface of a FIFO queue.
The options for the backing containers are std::deque and std::list.