C++STL queue

2021-07-01 08:06

阅读:616

标签:push   bsp   c++   pop   stl   empty   front   nbsp   出队   

queue队列

先进先出

queue q1;

q1.push();//插入元素

q1.front();//求队头元素

q1.pop();//删除队头元素

q1.empty();//判断队列是否为空

元素全部抛出队列

while(!q1.empty())

{

  int tmp = q1.front();

  q1.pop();

}

 

C++STL queue

标签:push   bsp   c++   pop   stl   empty   front   nbsp   出队   

原文地址:https://www.cnblogs.com/smh2015/p/9637709.html


评论


亲,登录后才可以留言!