II এই টিউটোরিয়ালে, C++ STL তালিকার উপাদানগুলি কীভাবে মুছে ফেলা যায় তা বোঝার জন্য আমরা একটি প্রোগ্রাম নিয়ে আলোচনা করব।
এর জন্য, আমরা pop_back() এবং pop_front() ফাংশন ব্যবহার করব যথাক্রমে শেষ এবং সামনে থেকে উপাদান মুছে ফেলতে।
উদাহরণ
#include<iostream>
#include<list>
using namespace std;
int main(){
list<int>list1={10,15,20,25,30,35};
cout << "The original list is : ";
for (list<int>::iterator i=list1.begin(); i!=list1.end();i++)
cout << *i << " ";
cout << endl;
//deleting first element
list1.pop_front();
cout << "The list after deleting first element using pop_front() : ";
for (list<int>::iterator i=list1.begin(); i!=list1.end(); i++)
cout << *i << " ";
cout << endl;
//deleting last element
list1.pop_back();
cout << "The list after deleting last element using pop_back() : ";
for (list<int>::iterator i=list1.begin(); i!=list1.end(); i++)
cout << *i << " ";
cout << endl;
} আউটপুট
The original list is : 10 15 20 25 30 35 The list after deleting first element using pop_front() : 15 20 25 30 35 The list after deleting last element using pop_back() : 15 20 25 30