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 8937293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:22:57+00:00 2026-06-15T10:22:57+00:00

I have an unordered_map<string, list<SomeClass>::iterator> I want to insert an element in this map,

  • 0

I have an
unordered_map<string, list<SomeClass>::iterator>

I want to insert an element in this map, but only if it does not exist already. If it exists, I don’t want to overwrite the existing item. Also, I want to avoid doing two lookups to check if the item exists and then for the insert. I came to the conclusion that I should use operator[] to get an element with the key, check if it is valid, and if not, initialize it. The problem is that the element is an iterator, and I have to check if it is initialized, which is not really possible. I can use a class that derives from teh list iterator class, and implement the defautl constructor to initialize it to an ‘invalid’ value, but in the constructor I don’t have access to the list instance to get its end() iterator.
Any ideas how to do it?

  • 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-06-15T10:22:58+00:00Added an answer on June 15, 2026 at 10:22 am

    Use insert or emplace, which won’t overwrite the value if it already exists:

    auto i = m.insert(std::make_pair("hello"), my_iterator);
    auto j = m.emplace("hello", my_iterator);                  // same
    

    You can test i.second to see whether the insertion succeeded or not, and i.first is an iterator to the map element.

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

Sidebar

Related Questions

I have the following code: boost::unordered_map<std::string, int> map; map[hello]++; map[world]++; for(boost::unordered_map<std::string, int>::iterator it =
I have an unordered map: class O(val a: Int) Map[String, List[O]] which I'd like
unordered_map<std::string,unordered_map<std::string, std::string> >* storing_vars; I have this variable in the scope declared in the
unordered_map<std::string, std::string>* Accounts; I have this code up there to initialize from a pointer,
suppose i have the following: boost::unordered_map< string , someValueType > map; someValueType& value =
I have defined a Map boost::unordered_map<std::string,std::string>m_mapABC ; And I Store values in it Like
I Have a object which the following field : boost::unordered_map<std::string, std::shared_ptr<Foo> > m_liste_; I
I have an unordered list and each list element contains a photo and a
I have been trying to make a StringTable class that holds a simple unordered_map<string,
I have the following code: #include <string> #include <iostream> #include <tr1/unordered_map> typedef std::tr1::unordered_map<unsigned long

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.