当前位置 : 主页 > 网页制作 > HTTP/TCP >

单项队列

来源:互联网 收集:自由互联 发布时间:2021-06-16
单向队列 queue支持 empty() size() front() back() push() pop() 由于queue只是进一步封装别的数据结构,并提供自己的接口,所以代码非常简洁,如果不指定容器,默认是用deque来作为其底层数据结
  • 单向队列 queue支持
  • empty()
  • size()
  • front()
  • back()
  • push()
  • pop()
      由于queue只是进一步封装别的数据结构,并提供自己的接口,所以代码非常简洁,如果不指定容器,默认是用deque来作为其底层数据结构的。下面给出单向队列的使用范例:

参考:http://blog.csdn.net/MoreWindows

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44


#include <vector>
#include <list>
#include <cstdio>
using namespace std;

int ()
{


queue<int, list<int>> a;
queue<int> b;
int i;

//压入数据
for (i = 0; i < 10; i++)
{
a.push(i);
b.push(i);
}

//单向队列的大小
printf("%d %dn", a.size(), b.size());

//队列头和队列尾
printf("%d %dn", a.front(), a.back());
printf("%d %dn", b.front(), b.back());

//取单向队列项数据并将数据移出单向队列
while (!a.empty())
{
printf("%d ", a.front());
a.pop();
}
putchar('n');

while (!b.empty())
{
printf("%d ", b.front());
b.pop();
}
putchar('n');
return 0;
}

原文:大专栏  单项队列

网友评论