forward_list :: cbefore_begin()是CPP STL中的内置函数,它返回一个常量随机访问迭代器,该迭代器指向forward_list的第一个元素之前的位置。通过此函数获得的迭代器可用于在容器中进行迭代,但即使对象本身不是常量,也无法用于修改其指向的对象的内容。
句法:
forwardlist_name.cbefore_begin()
参数:该函数不接受任何参数。
返回值:该函数返回一个常量随机访问迭代器,该迭代器指向forward_list的第一个元素之前的位置。
下面的程序演示了以上函数:
// C++ program to illustrate the
// cbefore_begin() function
#include
using namespace std;
int main()
{
// initialising the forward list
forward_list fl = { 20, 30, 40, 50 };
// performing cbefore_begin function
auto it = fl.cbefore_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等的更多准备工作,请参阅“完整面试准备课程” 。