队列

STL:

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

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

 #include <queue>
#include <cstdio>
uisng namespace std; int main()
{
queue<int> que; // 声明存储int类型数据的队列
que.push(); // {}--{1}
que.push(); // {1}--{1,2}
que.push(); // {1,2}--{1,2,3}
printf("%d\n",que.front()); //
que.pop(); // 从队列移除{1,2,3}--{2,3}
printf("%d\n",que.frout()); //
que.pop(); // {2,3}--{3}
printf("%d\n",que.frout()); //
que.pop(); // {3}--{}
return ;
}

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

上一篇:Objective-C代码的文件扩展名


下一篇:jquery lazy load