队列向量

Vector of queues(队列向量)
本文介绍了队列向量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何创建队列向量,如何添加元素?

How to create vector of queues, and how do I add elements?

我希望能够做到以下几点:
- 在向量中插入一个新队列
- 将新元素插入队列那是在向量里面.

I want to be able to do the following:
-insert a new queue into the vector
-insert a new element into a queue that's inside the vector.

:D

推荐答案

vector<queue<int>> vec; // vector of queues
vec.push_back(queue<int>()); // add a queue
vec[0].push(1); // push 1 into queue number 0.

这篇关于队列向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Python equivalent for C++ STL vector/list containers(C++ STL 向量/列表容器的 Python 等效项)
vector string push_back is not working in c++(向量字符串 push_back 在 C++ 中不起作用)
vectorlt;unique_ptrlt;Agt; gt; using initialization list(向量lt;unique_ptrlt;Agt;gt;使用初始化列表)
Copy map values to vector in STL(将地图值复制到 STL 中的向量)
Vector that can have 3 different data types C++(可以有 3 种不同数据类型的向量 C++)
c++: can vectorlt;Basegt; contain objects of type Derived?(c++: 可以向量lt;Basegt;包含 Derived 类型的对象?)