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

Xóa một phần tử khỏi C ++ std ::vector <> theo chỉ mục?

Xóa một phần tử khỏi C ++ std ::vector <> theo chỉ mục có thể được thực hiện theo cách sau -

Ví dụ

#include<iostream>
#include<vector>
using namespace std;
int main() {
   vector<int> v; //declare vector
   //insert elements into vector
   v.push_back(-10);
   v.push_back(7);
   v.push_back(6);
   // Deletes the first element (v[0])
   v.erase(v.begin() );
   for (int i = 0; i < v.size(); i++)
      cout << v[i] << " ";
}

Đầu ra

7 6