forward_list :: before_begin()是CPP STL中的内置函数,它返回一个迭代器,该迭代器指向forward_list的第一个元素之前的位置。
句法:
forwardlist_name.before_begin()
参数:该函数不接受任何参数。
返回值:该函数返回一个迭代器,该迭代器指向forward_list的第一个元素之前的位置。
下面的程序演示了以上函数:
// C++ program to illustrate the
// before_begin() function
#include
using namespace std;
int main()
{
// initialising the forward list
forward_list 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
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。