Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7021845
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:30:12+00:00 2026-05-27T23:30:12+00:00

I want to erase an element from the std::list and then point back to

  • 0

I want to erase an element from the std::list and then point back to this list but when I do it this way

for(std::list<CvRect>::iterator it = listOfCvRects.begin(); it != listOfCvRects.end(); it++)
{
    for(std::list<CvRect>::iterator jt = listOfCvRects.begin();  jt != listOfCvRects.end(); jt++)
    {
        if( it == jt )
        { continue;}

        if( (jt->x) > (it->x) //.. more conditions...)
        {
            jt = listOfCvRects.erase(jt);
            //OR 
            //listOfCvRects.erase(jt++);
        }
    }

}

I got and unhandled exception : iterator is unincrementable

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T23:30:13+00:00Added an answer on May 27, 2026 at 11:30 pm

    I believe the problem is that in some cases (those where you delete an element), you are double incrementing the iterator. Your for loop looks like this:

    for(std::list<T>::iterator jt = l.begin();  jt != l.end(); jt++) {
        ....
    }
    

    But inside of it you are doing something like this:

    jt = l.erase(jt);
    

    So, if the case happens that you do the erase, you erase it and at the same time, set the iterator to the next element… But, you also increment it with the jt++!

    The simple approach to fixing this is re-write the for loop slightly to fit this form factor:

    for(std::list<T>::iterator it = l.begin(); it != l.end(); ) { // notice no increment!
        // ...
        if(cond) {
            it = l.erase(it);
        } else {
            ++it;
        }
    }
    

    so you are doing one or the other increments, but never both.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to clear a element from a vector using the erase method. But
std::vector::erase() does not accept reverse iterator. Is there any way to call this method
Note that the order can go either way (erase first then push back, just
I want to erase an element from a container which is being currently used
Want the function to sort the table by HP but if duplicate HPs then
I have a class that looks like this: typedef std::list<char*> PtrList; class Foo {
I want rotate a element with css3 animation and transform property,which from 20 degree
Allegedly you cannot just erase/remove an element in a container while iterating as iterator
I want to change the element in a set , so I used set<T>::iterator
I'm most likely going about this the wrong way, but I was wondering if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.