Computer >> Máy Tính >  >> Lập trình >> C ++

Xóa các phần tử trong danh sách C ++ STL


Trong hướng dẫn này, chúng ta sẽ thảo luận về một chương trình để hiểu cách xóa các phần tử trong danh sách C ++ STL.

Đối với điều này, chúng tôi sẽ sử dụng hàm pop_back () và pop_front () để xóa phần tử từ cuối cùng và trước tương ứng.

Ví dụ

#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;
}

Đầu ra

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