C++ List Library - push_front() Function



Description

The C++ function std::list::push_front() inserts new element at the beginning of the list and increases size of list by one.

Declaration

Following is the declaration for std::list::push_front() function form std::list header.

C++11

void push_front (value_type&& val);

Parameters

val − Value to be assigned to newly inserted into list.

Return value

None.

Exceptions

This member function never throws exception.

Time complexity

Constant i.e. O(1)

Example

The following example shows the usage of std::list::push_front() function.

#include <iostream>
#include <list>

using namespace std;

int main(void) {
   list<int> l1 = {1, 2, 3, 4, 5};
   list<int> l2;

   for (auto it = l1.begin(); it != l1.end(); ++it)
      l2.push_front(move(*it));

   cout << "List l2 contains following elements" << endl;

   for (auto it = l2.begin(); it != l2.end(); ++it)
      cout << *it << endl;

   return 0;
}

Let us compile and run the above program, this will produce the following result −

List l2 contains following elements
5
4
3
2
1
list.htm
Advertisements