博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
队列 <queue>
阅读量:6503 次
发布时间:2019-06-24

本文共 729 字,大约阅读时间需要 2 分钟。

STL:

 

队列中pop完成的不是取出最顶端的元素,而是取出最低端的元素.也就是说最初放入的元素能够最先被取出(这种行为被叫做FIFO:First In First Out,即先进先出).

queue:front 是用来访问最底端数据的函数.

 

1 #include 
2 #include
3 uisng namespace std; 4 5 int main() 6 { 7 queue
que; // 声明存储int类型数据的队列 8 que.push(1); // {}--{1} 9 que.push(2); // {1}--{1,2}10 que.push(3); // {1,2}--{1,2,3}11 printf("%d\n",que.front()); // 112 que.pop(); // 从队列移除{1,2,3}--{2,3}13 printf("%d\n",que.frout()); // 214 que.pop(); // {2,3}--{3}15 printf("%d\n",que.frout()); // 316 que.pop(); // {3}--{}17 return 0;18 }

 

 

<<挑战程序设计竞赛>>读后感

转载于:https://www.cnblogs.com/wangmengmeng/p/5222671.html

你可能感兴趣的文章
matplotlib 雷达图2
查看>>
sql 查出一张表中重复的所有记录数据
查看>>
Spinner使用二
查看>>
SLF4J - 借助SLF4J, 统一适配所有日志实现为logback日志实现的实践
查看>>
log4j 转载
查看>>
[js高手之路] dom常用API【appendChild,insertBefore,removeChild,replaceChild,cloneNode】详解与应用...
查看>>
IIS并发连接数和数据库连接池
查看>>
软件工程作业 - word count
查看>>
JavaWeb使用Session防止表单重复提交
查看>>
JAVA-JSP之include指令
查看>>
Ubuntu中update-grub2与update-grub的区别
查看>>
nginx反向代理
查看>>
ASP.NET Core的身份认证框架IdentityServer4(6)- 开始
查看>>
service
查看>>
shell与if相关参数
查看>>
用fail2ban阻止ssh暴力破解root密码
查看>>
Mysql Order By 字符串排序,mysql 字符串order by
查看>>
Python cos() 函数
查看>>
system.web下的HttpModules节点和system.webServer下的modules节点的配置区别
查看>>
Database Setup
查看>>