কম্পিউটার

C++ STL তালিকার উপাদানগুলি মুছুন


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

  1. C++ STL-এ বিপরীত ফাংশন তালিকাভুক্ত করুন

  2. কিভাবে C++ STL তালিকায় উপাদান সন্নিবেশ করা যায়?

  3. সি++ এসটিএল-এর তালিকা থেকে কীভাবে শেষ উপাদান মুছে ফেলবেন

  4. STL এ তালিকা বাস্তবায়নের জন্য C++ প্রোগ্রাম