In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article introduces the relevant knowledge of "case Analysis of remove and erase in C++". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
Introduction to erase
The prototype of erase function in vector is as follows:
Iterator erase (const_iterator position); iterator erase (const_iterator first, const_iterator last)
Used to delete an element or segment of an vector container.
When deleting an element, its parameter is an iterator that points to the corresponding element; when deleting an element, it is an iterator that points to the beginning of one element and an iterator that points to the next element at the end of the element.
When erase is called, the vector element moves forward, so you need to pay special attention to this feature to avoid out-of-bounds access and missed handling.
Sample code:
Int main (int argc, char * argv []) {vector myVector; myVector.push_back (1); myVector.push_back (2); myVector.push_back (3); myVector.push_back (4); myVector.push_back (3); myVector.push_back (3) MyVector.push_back (3); for (vector::iterator itr = myVector.begin (); itr! = myVector.end (); itr++) {if (* itr = = 3) {/ / now itr has pointed to the new next element If you do not perform an offset between itr-- and itr++, it will exceed the end and cause a crash. Itr = myVector.erase (itr); itr--;}} cout
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.