vector 移除元素
Posted herd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vector 移除元素相关的知识,希望对你有一定的参考价值。
vector中移除“与某值相等”的第一个元素。
std::vector<Elem> coll; ... //remove first element with value val std::vector<Elem>::iterator pos; pos = find(coll.begin(),coll.end(),val); if(pos != coll.end()) coll.erase(pos);
以上是关于vector 移除元素的主要内容,如果未能解决你的问题,请参考以下文章