1.源码实现
#include <iostream>
#include <string>
#include <queue>
using namespace std;
int main()
{
queue<int> q;
int tmp;
int i;
for(i=0; i<10; i++)
{
q.push(i);
}
if(!q.empty())
{
cout << "队列q非空" << endl;
cout << "q中有" << q.size() << "个元素" << endl;
}
cout << "队头元素为: " << q.front() << endl;
cout << "队尾元素为: " << q.back() << endl;
for(i=0; i<10; i++)
{
tmp = q.front();
cout << "当前元素为: " << tmp << endl;
q.pop();
}
if(q.empty())
{
cout << "队列q为空" << endl;
}
return 0;
}
2.编译源码
$ g++ -o example example.cpp
3.运行及其结果
$ ./example
队列q非空
q中有10个元素
队头元素为: 0
队尾元素为: 9
当前元素为: 0
当前元素为: 1
当前元素为: 2
当前元素为: 3
当前元素为: 4
当前元素为: 5
当前元素为: 6
当前元素为: 7
当前元素为: 8
当前元素为: 9
队列q为空
网友评论