Inserting objects into set in C++ | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

Inserting objects into set in C++

Suppose I have a structure called S. Then I have two sets s1 and s2 and an object obj of type S. struct S{ //... } S obj; set<S> s1; set<S> s2; I want to add the object to both sets so that the same object is in both sets. This would mean that later changes to the objects in s1 are done also to the object in s2 and vice versa. If I do only s1.insert(obj); s2.insert(obj); The copy constructor is called and in each set there is an independent object. What should I do? Is the only solution having sets of pointers S* instead. Thanks for help

8th Aug 2018, 5:20 PM
michal
5 Respostas
+ 3
Yup you can use pointers, but probably a std::shared_ptr will be easier to manage as it will free the memory of the object when it is no longer needed, without you manually having to do it! https://code.sololearn.com/cnB4TrpAy5dA/?ref=app
8th Aug 2018, 7:09 PM
Schindlabua
Schindlabua - avatar
+ 2
Ketan Lalcheta I need to use it in my code for Chess Engine challenge. Each set sorts the elements in different way. Edit: It's almost done. https://code.sololearn.com/c3r46fdqy6Yy/?ref=app
9th Aug 2018, 7:04 AM
michal
+ 1
Schindlabua nice one... michal could you please share what made you to have two different copies of sets owning same object or data?
9th Aug 2018, 3:30 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
0
Schindlabua Thanks. Nice demonstration code.
9th Aug 2018, 7:02 AM
michal
0
michal thanks for sharing this... I am bit confused now..as all of the set are having same objects, what's the point of having different sets... I was eager to know that challenge result itself and now this point also... super waiting...
9th Aug 2018, 7:47 AM
Ketan Lalcheta
Ketan Lalcheta - avatar