当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Queue queue()用法及代码示例



描述

C++ 初始化构造函数std::queue::queue()构造一个队列对象并通过副本分配内部容器ctnr

声明

以下是 std::queue::queue() 构造函数形式 std::queue 标头的声明。

C++11

explicit queue (const container_type& ctnr);

参数

ctnr- 容器类型,是类模板的第二个参数。

返回值

构造函数从不返回值。

时间复杂度

线性,即 O(n)

示例

以下示例显示了 std::queue::queue() 构造函数的用法。

#include <iostream>
#include <queue>

using namespace std;

int main(void) {   
   auto it = {1, 2, 3, 4, 5};
   queue<int> q(it);

   cout << "Queue contents are" << endl;
   while (!q.empty()) {
      cout << q.front() << endl;
      q.pop();
   }

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果——

Queue contents are
1
2
3
4
5

相关用法


注:本文由纯净天空筛选整理自 C++ Queue Library - queue() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。