C++ List 库 - emplace() 函数
描述
C++ 函数 std::list::emplace() 通过在给定位置插入新元素来扩展列表。 这个成员函数增加了列表的大小。
声明
以下是 std::list::emplace() 函数形式 std::list 头的声明。
C++11
template <class... Args> iterator emplace (const_iterator position, Args&&... args);
参数
position − 列表中要插入新元素的位置。
args − 转发参数以构造新元素。
返回值
返回一个随机访问迭代器,它指向新放置的元素。
异常
如果重新分配失败,则抛出 bad_alloc 异常。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::list::emplace() 函数的用法。
#include <iostream> #include <list> using namespace std; int main(void) { list<int> l = {3, 4, 5}; auto it = l.emplace(l.begin(), 2); l.emplace(it, 1); cout << "List contains following element" << endl; for (auto it = l.begin(); it != l.end(); ++it) cout << *it << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
List contains following element in reverse order 1 2 3 4 5