LAST UPDATED: NOVEMBER 1, 2020
C++ Using STL Lists (Part 2) Program
Hello Everyone!
In this tutorial, we will learn about the working of Lists (Part 2), in the C++ programming language.
We have explained and implemented the various functions on lists such as reverse()
, sort()
, push_back()
, push_front()
, etc.
To understand the basic functionality of the Lists in C++, we will recommend you to visit https://www.studytonight.com/cpp/stl/stl-container-list, where we have explained this concept in detail from scratch.
For a better understanding of its implementation, refer to the well-commented CPP code given below.
Code:
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
//Function to print the elements of the list
void show(list<int> &l)
{
//Defining an iterator for the list
list<int>::iterator i;
for (i = l.begin(); i != l.end(); i++)
{
cout << "\t" << *i;
}
cout << endl;
}
int main()
{
cout << "\n\nWelcome to Studytonight :-)\n\n\n";
cout << " ===== Program to demonstrate the working of Lists (Part 2), in CPP ===== \n\n";
int i;
//List declaration (list of integers)
list<int> l1, l2;
//Filling the elements
cout << "Filling the First list from end\n\n";
for (i = 0; i < 5; i++)
{
l1.push_back(i * 5); //inserting elements from end
}
cout << "The elements of the First list are: ";
show(l1);
//Filling the elements
cout << "Filling the Second list from front\n\n";
for (i = 0; i < 5; i++)
{
l2.push_front(i * 10); //inserting elements from front
}
cout << "The elements of the Second list are: ";
show(l2);
cout << "\n\nList 1 after getting reversed is: ";
l1.reverse();
show(l1);
cout << "\n\nList 2 after getting sorted is: ";
l2.sort();
show(l2);
cout << "\n\n\n";
return 0;
}
Output:
We hope that this post helped you develop a better understanding of the concept of Lists and its implementation in C++. For any query, feel free to reach out to us via the comments section down below.
Keep Learning : )