C++ 双端队列库 - 运算符 = 函数


描述

C++ 函数std::deque::operator[]返回对位置n处存在的元素的引用。

宣言

以下是 std::deque::operator[] 函数形式 std::deque 标头的声明。

C++98

reference operator[] (size_type n);
const_reference operator[] (size_type n) const;

参数

n - 容器中元素的位置。

返回值

返回对位置 n 处存在的元素的引用。

例外情况

如果n不是有效索引,则行为未定义。

时间复杂度

常数即 O(1)

例子

以下示例显示了 std::deque::operator[] 函数的用法。

#include <iostream>
#include <deque>

using namespace std;

int main(void) {

   deque<int> d {1, 2, 3, 4, 5};

   cout << "Contents of deque are" << endl;

   for (int i = 0; i < d.size(); ++i)
      cout << d[i] << endl;

   return 0;
}

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

Contents of deque are
1
2
3
4
5
双端队列.htm