std::forward_list<T,Allocator>::insert_after
来自 cppreference.com
iterator insert_after( const_iterator pos, const T& value ); |
(1) | (自 C++11 起) |
iterator insert_after( const_iterator pos, T&& value ); |
(2) | (自 C++11 起) |
iterator insert_after( const_iterator pos, size_type count, const T& value ); |
(3) | (自 C++11 起) |
template< class InputIt > iterator insert_after( const_iterator pos, InputIt first, InputIt last ); |
(4) | (自 C++11 起) |
iterator insert_after( const_iterator pos, std::initializer_list<T> ilist ); |
(5) | (自 C++11 起) |
在容器中指定位置之后插入元素。
1,2) 在 pos 指向的元素之后插入 value。
3) 在 pos 指向的元素之后插入 count 个 value 的副本。
4) 在 pos 指向的元素之后插入范围
[
first,
last)
中的元素。如果 first 和 last 是 *this 中的迭代器,则行为未定义。5) 插入来自初始化列表 ilist 的元素。
没有迭代器或引用失效。
内容 |
[编辑] 参数
pos | - | 将插入内容之后的迭代器 |
value | - | 要插入的元素值 |
count | - | 要插入的副本数量 |
first, last | - | 要插入的元素范围 |
ilist | - | 要从中插入值的初始化列表 |
类型需求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 |
[编辑] 返回值
1,2) 插入元素的迭代器。
3) 插入的最后一个元素的迭代器,如果 count == 0,则为 pos。
4) 插入的最后一个元素的迭代器,如果 first == last,则为 pos。
5) 插入的最后一个元素的迭代器,如果 ilist 为空,则为 pos。
[编辑] 异常
如果由于任何原因抛出异常,这些函数将没有效果 (强异常安全保证).
[编辑] 复杂度
1,2) 常数。
3) 线性于 count。
4) 线性于 std::distance(first, last)。
5) 线性于 ilist.size()。
[编辑] 示例
运行此代码
#include <forward_list> #include <iostream> #include <string> #include <vector> void print(const std::forward_list<int>& list) { std::cout << "list: {"; for (char comma[3] = {'\0', ' ', '\0'}; int i : list) { std::cout << comma << i; comma[0] = ','; } std::cout << "}\n"; } int main() { std::forward_list<int> ints{1, 2, 3, 4, 5}; print(ints); // insert_after (2) auto beginIt = ints.begin(); ints.insert_after(beginIt, -6); print(ints); // insert_after (3) auto anotherIt = beginIt; ++anotherIt; anotherIt = ints.insert_after(anotherIt, 2, -7); print(ints); // insert_after (4) const std::vector<int> v = {-8, -9, -10}; anotherIt = ints.insert_after(anotherIt, v.cbegin(), v.cend()); print(ints); // insert_after (5) ints.insert_after(anotherIt, {-11, -12, -13, -14}); print(ints); }
输出
list: {1, 2, 3, 4, 5} list: {1, -6, 2, 3, 4, 5} list: {1, -6, -7, -7, 2, 3, 4, 5} list: {1, -6, -7, -7, -8, -9, -10, 2, 3, 4, 5} list: {1, -6, -7, -7, -8, -9, -10, -11, -12, -13, -14, 2, 3, 4, 5}
[编辑] 另请参见
在元素之后就地构造元素 (公有成员函数) | |
在开头插入元素 (公有成员函数) |