在本文中,我们将讨论C ++中forward_list::before_begin()函数的工作,语法和示例。
转发列表是序列容器,允许在序列中的任何位置进行恒定时间的插入和擦除操作。转发列表被实现为单链接列表。通过与到序列中下一个元素的链接的每个元素的关联来保持顺序。
forward_list::before_begin()是C ++ STL中的内置函数,在<forward_list>头文件中声明。before_begin()返回迭代器,该迭代器指向forward_list容器中第一个元素之前的元素。
forwardlist_container.before_begin();
此函数不接受任何参数。
此函数将迭代器返回到序列开始之前的位置。
/ *在下面的代码中,我们创建一个转发列表,然后使用before_begin()函数指向转发列表中的第一个元素,然后,我们将尝试使用insert_after在转发列表的前面插入一个新元素()功能。现在,我们将注意到输出中的更改。* /
#include <bits/stdc++.h> using namespace std; int main() { //创建和初始化转发列表 forward_list<int> forwardList = { 3, 6, 1, 2, 4 }; //调用before_begin函数 auto i = forwardList.before_begin(); //在转发列表之前插入元素 forwardList.insert_after(i, 7); cout<< "转发列表的元素是:" << endl; for (auto j = forwardList.begin(); j != forwardList.end(); ++j) cout << *j << " "; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
转发列表的元素是: 7 3 6 1 2 4
#include <bits/stdc++.h> using namespace std; int main() { forward_list<int> forwardList = {2, 23, 12, 11}; forwardList.insert_after(forwardList.before_begin(), 19 ); cout << "Elements in the forward lists are : "; for (auto j = forwardList.begin(); j != forwardList.end(); ++j) cout << *j << " "; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出
Elements in the forward lists are : 19 2 23 12 11