Open In App

list front() function in C++ STL

The list::front() is a built-in function in C++ STL which is used to return a reference to the first element in a list container. Unlike the list::begin() function, this function returns a direct reference to the first element in the list container.

Syntax

list_name.front();

Parameters

Return Value

Exception

Example

The below program illustrates the list::front() function.




// CPP program to illustrate the
// list::front() function
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
    // Creating a list
    list<int> demoList;
 
    // Add elements to the List
    demoList.push_back(10);
    demoList.push_back(20);
    demoList.push_back(30);
    demoList.push_back(40);
 
    // get the first element using front()
    int ele = demoList.front();
 
    // Print the first element
    cout << ele;
 
    return 0;
}

Output
10

Time complexity: O(1)
Auxiliary Space: O(n) where n is the size of the list

Note: This function works in constant time complexity.

Article Tags :
C++