función C ++ conjunto STL :: erase () : Aquí, vamos a aprender acerca de la función borrado () del conjunto en C ++ STL (Standard Template Library).
C ++ STL set :: erase () Función
set :: erase () es una función predefinida, se utiliza para borrar un elemento de un conjunto.
Prototipo:
set<T> st; //declaration
set<T>::iterator it; //iterator declaration
st.erase( const T item); //prototype 1
or
st.erase(iterator position) //prototype 2
Parámetro:
const T item; //prototype 1
Or
Iterator position //prototype 2
class escribir:
size_type //prototype 1
Or
void //prototype 2
Uso: La función se utiliza para borrar un elemento basado en su valor o iterador posición a partir del conjunto
Ejemplo: archivo
For a set of integer,
set<int> st;
set<int>::iterator it;
st.insert(4);
st.insert(5);
set content:
4
5
st.erase(4);
set content:
5
st.erase(st.begin()); //erases 5
set content:
empty set
Header que se incluirá:
#include <iostream>
#include <set>
OR
#include <bits/stdc++.h>
C ++ aplicación:
#include <bits/stdc++.h>
using namespace std;
void printSet(set<int> st){
set<int>:: iterator it;
cout<<"Set contents are:n";
for(it=st.begin();it!=st.end();it++)
cout<<*it<<" ";
cout<<endl;
}
int main(){
cout<<"Example of erase functionn";
set<int> st;
set<int>:: iterator it;
cout<<"inserting 4n";
st.insert(4);
cout<<"inserting 6n";
st.insert(6);
cout<<"inserting 10n";
st.insert(10);
printSet(st); //printing current set
cout<<"erasing 6..n";
st.erase(6); //prototype 1
cout<<"After erasing 6...n";
printSet(st);
cout<<"erasing first element of the set nown";
st.erase(st.begin());//prototype 2
cout<<"after erasing first element of set nown";
printSet(st);
return 0;
}
salida
Example of erase function
inserting 4
inserting 6
inserting 10
Set contents are:
4 6 10
erasing 6..
After erasing 6...
Set contents are:
4 10
erasing first element of the set now
after erasing first element of set now
Set contents are:
10