C++ Deque 库 - at() 函数
描述
C++ 函数 std::deque::at() 返回对出现在双端队列中位置 n 的元素的引用。
声明
以下是 std::deque::at() 函数形式 std::deque 标头的声明。
C++98
reference at (size_type n); const_reference at (size_type n) const;
参数
n − 双端队列中元素的位置。
返回值
如果 n 是有效的双端队列索引,则从指定位置返回一个元素。 如果 deque 对象是常量限定的,则方法返回常量引用,否则返回非常量引用。
异常
如果 n 无效索引 out_of_bound 抛出异常。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::deque::at() 函数的用法。
#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.at(i) << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
Contents of deque are 1 2 3 4 5