queue容器
1-queue特性
(1)队列容器 先进先出 一端插入,另外一端删除。 (2)不提供迭代器—不能进行遍历 (3)不能随机访问
2-queue容器操作
3-实例
#include #include using namespace std;
void test01(){
queue
<int>q
;
q
.push(10);
q
.push(20);
q
.push(30);
q
.push(40);
cout
<< "队尾:" << q
.back() << endl
;
while (!q
.empty()) {
cout
<< q
.front() << " ";
q
.pop();
}cout
<< endl
;
cout
<< q
.size() << endl
;
}
int main(void) {
test01();
return 0;
}