0%

queue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include<iostream>
using namespace std;
#include <queue>
int main(){
queue<int> a;
for (int i = 0; i < 9;i++){
a.push(i);
cout << i;
}
cout << endl;

while(!a.empty()){
int element = a.front();
cout << element;
a.pop();
}

return 0;
}

以下是queue容器中常用的成员函数:

  1. push(element):将元素element压入队列的末尾。
  2. pop():弹出队首元素。
  3. front():返回队首元素的引用。
  4. back():返回队尾元素的引用。
  5. empty():判断队列是否为空,如果队列为空则返回true,否则返回false。
  6. size():返回队列中元素的个数。
  7. swap(other):交换当前队列的元素和另一个队列(other)的元素。
-------------本文结束感谢您的阅读-------------
老板你好,讨口饭吃