forward_list::before_begin()是CPP STL中的内置函数,它返回一个迭代器,该迭代器指向forward_list的第一个元素之前的位置。
用法:
forwardlist_name.before_begin()
参数:该函数不接受任何参数。
返回值:该函数返回一个迭代器,该迭代器指向forward_list的第一个元素之前的位置。
下面的程序演示了以上函数:
// C++ program to illustrate the
// before_begin() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialising the forward list
forward_list<int> fl = { 20, 30, 40, 50 };
// performing before_begin function
auto it = fl.before_begin();
// inserting element before the first element
fl.insert_after(it, 10);
cout << "Element of the list are:" << endl;
// loop to print the elements of the list
for (auto it = fl.begin(); it != fl.end(); ++it)
cout << *it << " ";
return 0;
}
输出:
Element of the list are: 10 20 30 40 50
相关用法
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 forward_list::before_begin() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。