forward_list::cbefore_begin() in C++ STL
forward_list::cbefore_begin() is an inbuilt function in CPP STL which returns a constant random access iterator which points to the position before the first element of the forward_list. The iterator obtained by this function can be used to iterate in the container but cannot be used to modify the content of the object to which it is pointing, even if the object itself is not constant. Syntax:
forwardlist_name.cbefore_begin()
Parameters: The function does not accept any parameter. Return value: The function returns a constant random access iterator which points to the position before the first element of the forward_list. Below program demonstrates the above function:
CPP
// C++ program to illustrate the // cbefore_begin() function #include <bits/stdc++.h> using namespace std; int main() { // initialising the forward list forward_list< int > 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; } |
Output:
Element of the list are: 10 20 30 40 50
Time Complexity: O(1)
Auxiliary Space: O(1)
Please Login to comment...