C++容器篇-----queue的使用方法

queue的常用接口

#include<iostream>
#include<queue>
#include<string>
using namespace std;

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("唐僧", 30);
	Person p2("孙悟空",1000);
	Person p3("猪八戒", 900);
	Person p4("沙僧", 800);

	q.push(p1);
	q.push(p2);
	q.push(p3);
	q.push(p4);

	//判断只要队列不为空,查看队头,查看队尾,出队

	cout << "队列的大小为: " << q.size() << endl;
	cout << endl;
	while (!q.empty())
	{
		//查看队头
		cout << "队头元素---姓名: " << q.front().m_Name << " 年龄: " << q.front().m_Age << endl;

		//查看队尾
		cout << "队头元素---姓名: " << q.back().m_Name << " 年龄: " << q.back().m_Age << endl;
		cout << 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、付费专栏及课程。

余额充值