47&48queue容器-基本概念/常用接口

#include<iostream>
#include<deque>
#include<vector>
#include<stack>
#include<algorithm>
#include<Queue>
#include<ctime>
using namespace std;
//队列	Queue
class Person
{
public:
	Person(string name, int age)
	{
		this->m_Name = name;
		this->m_Age = age;
	}
	string m_Name;
	int m_Age;
};
void test01()
{
	//创建队列
	queue<Person>q;

	//准备数据
	Person p1("A", 1);
	Person p2("B", 2);
	Person p3("C", 3);
	Person p4("D", 4);

	//入队
	q.push(p1);
	q.push(p2);
	q.push(p3);
	q.push(p4);
	cout << "队列大小为:" << q.size() << endl;
	//只要队列不为空,查看队头 查看队尾  出队
	while (!q.empty())
	{//查看队头
		cout << "队头元素 --姓名:" << q.front().m_Name << "年龄:" << q.front().m_Age<<endl;
		//查看队尾
		cout << "队尾元素 --姓名:" << q.back().m_Name << "年龄:" << q.back().m_Age << endl;
		//出队
		q.pop();

	}
	cout << "队列大小为:" << q.size() << endl;


}
int main()
{
	test01();

	system("pause");
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值