std::queue
void pop();
从 queue 移除前端元素。实际上调用 c.pop_front()。
c.pop_front()
(无)
等于 Container::pop_front 的复杂度。
Container::pop_front