c++中queue队列的常用接口

在这里插入图片描述

#include <iostream>

using namespace std;

#include<string>
#include<queue>

class Person {
public:
    Person(string name, int age) {
        this->name = name;
        this->age = age;
    }

    string name;
    int age;
};

void test() {
    //特点:符合先进先出的数据结构
    queue<Person> q;

    //入队
    q.push(Person("孙悟空", 100));
    q.push(Person("猪八戒", 99));
    q.push(Person("沙僧", 12));
    q.push(Person("唐僧", 98));

    //判断只要队列不为空,查看队头,查看队尾,出队
    while (!q.empty()) {
        //查看队头
        cout << "队头元素 姓名:" << q.front().name << "年龄:" << q.front().age << endl;

        //查看队尾
        cout << "队尾元素 姓名:" << q.back().name << "年龄:" << q.back().age << endl;

        //出队
        q.pop();
    }

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


}

int main() {
    test();
    return 0;

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值