ฉันจะแสดงด้วยตัวอย่างตัวอย่างด้านล่างนี้ลบองค์ประกอบแปลกออกจากเวกเตอร์:
void test_del_vector(){
std::vector<int> vecInt{0, 1, 2, 3, 4, 5};
for(auto it = vecInt.begin();it != vecInt.end();){
if(*it % 2){
it = vecInt.erase(it);
} else{
++it;
}
}
for(auto const& it:vecInt)std::cout<<it;
std::cout<<std::endl;
vecInt = {0, 1, 2, 3, 4, 5};
for(auto it=std::begin(vecInt);it!=std::end(vecInt);){
if (*it % 2){
it = vecInt.erase(it);
}else{
++it;
}
}
for(auto const& it:vecInt)std::cout<<it;
std::cout<<std::endl;
vecInt = {0, 1, 2, 3, 4, 5};
vecInt.erase(std::remove_if(vecInt.begin(), vecInt.end(),
[](const int a){return a % 2;}),
vecInt.end());
for(auto const& it:vecInt)std::cout<<it;
std::cout<<std::endl;
}
เอาต์พุต aw ด้านล่าง:
024
024
024
โปรดทราบว่าเมธอดerase
จะส่งคืนตัวทำซ้ำถัดไปของตัวทำซ้ำที่ผ่านไป
จากที่นี่เราสามารถใช้วิธีการสร้างเพิ่มเติม:
template<class Container, class F>
void erase_where(Container& c, F&& f)
{
c.erase(std::remove_if(c.begin(), c.end(),std::forward<F>(f)),
c.end());
}
void test_del_vector(){
std::vector<int> vecInt{0, 1, 2, 3, 4, 5};
auto is_odd = [](int x){return x % 2;};
erase_where(vecInt, is_odd);
for(auto const& it:vecInt)std::cout<<it;
std::cout<<std::endl;
}
ดูวิธีการใช้งานstd::remove_if
ได้ที่นี่
https://en.cppreference.com/w/cpp/algorithm/remove
std::remove_if
ที่ "ทำสิ่งของ" แล้วส่งกลับค่าจริงหากคุณต้องการให้ลบองค์ประกอบออก