码迷,mamicode.com
首页 > 编程语言 > 详细

C++STL queue

时间:2018-09-12 23:03:14      阅读:181      评论:0      收藏:0      [点我收藏+]

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

queue队列

先进先出

queue<int> 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!