forward_list::before_begin() is an inbuilt function in CPP STL which returns a iterator which points to the position before the first element of the forward_list.
Syntax:
forwardlist_name.before_begin()
Parameters: The function does not accept any parameter.
Return value: The function returns an iterator which points to the position before the first element of the forward_list.
Below program demonstrates the above function:
// 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;
} |
chevron_right
filter_none
Output:
Element of the list are: 10 20 30 40 50
Rated as one of the most sought after skills in the industry, own the basics of coding with our C++ STL Course and master the very concepts by intense problem-solving.