Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Case Analysis of remove and erase in C++

2025-01-18 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.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report