Questions tagged «multiset»

7
在std :: multiset中,如果找到一个元素,则有一个函数或算法可以擦除一个样本(单一或重复)
也许这是重复的,但是我没有找到任何搜索内容:erase(value)对std::multiset所有具有找到的值的元素调用时,将被删除。我能想到的唯一解决方案是: std::multiset<int>::iterator hit(mySet.find(5)); if (hit!= mySet.end()) mySet.erase(hit); 可以,但是我认为可能会更好。有任何想法吗 ?
83 c++  stl  multiset 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.