2
votes
2answers
58 views

Associative container that allows specification of seperate comparator and ordering functor

I am looking for a container that allows me to specify separate functions for ordering and equivalence. std::set allows the specification of 1 comparator function. Ideally I want to sort on a ...
2
votes
1answer
66 views

C++ STL set: Compare object with extrinsic state

This definitions are inside of OuterClass: struct Compare { bool operator ()(const T&, const T&); }; typedef set<T, Compare> MySet; My problem is that the compare function ...
-13
votes
0answers
92 views

Which is better set or map? (In c++) [closed]

Anyone knows which is faster or better anyway ? std::map < int ,bool > std::set < int >
2
votes
4answers
149 views

The reference operator [] on STL set

I am just getting familiar with the STL and I can't quite understand why the operator [] gives an error. int main(){ set< int > s; for(int i=0; i<=1000; i++) ...
1
vote
1answer
43 views

use iterator to call the non-static function in STL Set

In the following program, I have a class A with a non-static function void add()` , I want use the iterator to call add() for each element in the set. But there is a ERROR at the last. How can I ...
-1
votes
1answer
44 views

Why isn't this set of custom objects constructed sorted according to overloaded opreator <

I have an Edge class defined as follows class Edge { public: //constructors & destructors Edge(); Edge(const Edge& orig); virtual ~Edge(); Edge(unsigned const int, const ...
0
votes
2answers
38 views

Iterator in std::set containing std::map

How can I can gain access to a map which is stored in std::set? I need to do something like for (iterator=map.begin(); iterator!=map.end(); iterator++) { some_function(iterator->first); } , ...
-2
votes
1answer
44 views

how to print the value of map of this type map< map< set< int > ,int >, int> mymap[2]

i declared a stl map like this map< map< set< int > ,int >, int> mymap[2] and i declared iterators like this set < int > ::iterator it3; map< ...
8
votes
2answers
144 views

C++ std::set why is it associative?

Why is std::set defined as an associative container? I mean std::map is an associative container because it maps a value to a key, but why is it a set?
0
votes
4answers
113 views

std:sort vs inserting into an std::set

I am reading some line segments from cin. Each line segment is represented by a start and end point. 2D. X and Y. The input is not sorted. It is in random order. (Update:But I need them sorted first ...
0
votes
2answers
55 views

crash on find() of set container

I have a SyncSet template class which locking on set operations. While I were doing stress test, I got crash. When I check crash output file it seems the reason is something about find function of set ...
0
votes
3answers
178 views

Why can't I insert 6 million elements in STL set?

I am trying to insert a little over 6.5 million elements(ints) in an stl set. Here is the code: set<int> s; cout << s.max_size() << endl; for(int i = 0; i < T.MULT * T.MAXP; i++) ...
-1
votes
1answer
93 views

Segmentation fault when removing iterator in stl set

I have a program that iterates through a set and replaces an element, calling itself until it can go no further, then undoes what it did and searches the next branch. for(set<int>::iterator ...
0
votes
3answers
61 views

How does set::erase() behave for set::end as its argument?

suppose that we have this piece of code: set<int> s; set<int>::iterator it = s.find(val); s.erase(it); As cplusplus.com said, if int val doesn't exist in set<int> s then, ...
1
vote
3answers
167 views

Does boost have a datatype for set operations that is simpler than the STL?

I find the C++ STL method of doing simple set operations quite clunky to use. For example, to find the difference between two sets: std::set<int> newUserIds; ...
0
votes
0answers
52 views

String sorting - std::set or std::vector?

I'm going to have around 1000 strings that need to be sorted alphabetically. std::set, from what I've read, is sorted. std::vector is not. std::set seems to be a simpler solution, but if I were to ...
0
votes
2answers
76 views

set , and compering/sorting functor or less operator

I have problem with set. I don't know what I'm doing wrong. Maybe some one of you can help me. So lets begin , the output of my program should be : Iksinski Adam, Kowalski Jan, Nowak Adam, Nowak Jan, ...
0
votes
1answer
82 views

STL Set inside Map , weird seg fault and Valgrind analysis

I have a weird segmentation fault in my code which use following data structure : map< uint64_t, set<uint64_t> > _key_to_block; Valgrind complain of _key_to_block.erase(it) with this ...
0
votes
2answers
82 views

problems with c++ set container

When I try to compile the following code: #include <iostream> #include <set> #include <vector> using namespace std; template <class T, class S> ...
1
vote
1answer
92 views

How can std::set::erase(const key_type& key) cause segfault?

I'm tracking a bug and I run into very strange behaviour. I have set of pointers and when I erase them one-by-one, first one erases, but erasing another gives me segfault. I use size_type erase( ...
0
votes
3answers
114 views

Are pointers stored in std::set const?

I'm hunting a bug in code and I have a problem: class a { public: void foo(int a) {} } std::set<a*> set; std::set<a*>::iterator it = set.begin(); it->foo(55); //gives me ...
1
vote
3answers
111 views

C++ Stl Set Behavior

I was trying to run the below code. What I am finding is that there is difference in the output. I understand that there is an issue with ordering mechanism used in the Comparator functionality. What ...
0
votes
1answer
43 views

Why compiler produces an error on template function

Why following code works fine: template <typename Set, typename Vector> void copySetToVector2(Set &s, Vector &v) { copy(s.begin(), s.end(), inserter(v, v.begin())); } int main() { ...
0
votes
2answers
100 views

Principle difference between vector::iterator and set::iterator

I've noticed such a question in one of C++\STL test-paper. Any ideas? Probably, that is somehow connected with the fact, that deleting element in collection causes invalidation "all after deleted" ...
0
votes
2answers
116 views

Alternative to std::set (with ability to move elements from one set to another)

I'm looking for an alternative to std::set. I need it to support more operations then std::set: Move elements from one set to another without 'create new->copy->remove old'. Split set at some ...
0
votes
1answer
119 views

Set intersection in a loop

My function search_intersection receive a set <set<string> >& inter_section. I want get the intersection over all subsets in inter_section. For example if: inter_section = { { lion, ...
1
vote
1answer
116 views

Inserting into STL Set of pair by sorting by second if first is same

I have a pair<int, pair<int, string> >. Now, I am inserting this into a STL Set of c++. It keeps the set sorted by the first value. But, if I insert a pair which has the same first ...
0
votes
0answers
78 views

Searching in an set of pointers, using a custom Compare functor

I was just wondering if the solution I just figured out works fine in all cases. I have an Server class, handling user visits between pages, which are stored as a Page class, with a single attribute ...
3
votes
5answers
138 views

Avoiding copies when using structs in STL sets and custom comparison function

Imagine you have a struct with a bunch of members, and you want to use a particular value referenced via one of its members as the key in a set, like so: class ComplexClass { public: const ...
1
vote
1answer
107 views

C++: Find and Erase a set element

i am having trouble to understand using find and erase with STL set. I have this: struct NotMemberFound : exception {}; class FriendGroup { private: set<Person, ClassComp> members; public: ...
2
votes
1answer
97 views

C++ Set: No match for - operator

I have a set, namely of type multiset , I'm trying to use the upper_bound function to find the index of the element returned by the iterator. Usually with vectors, it works if I get the iterator and ...
1
vote
3answers
294 views

Sorting Sets using std::sort

I would like to know if we can sort a pre created set. When I first create the set s_p2, I sort using a different element point.getLength(). but after user input i would like to sort the items ...
0
votes
1answer
116 views

Find elements in stl::set<object> based on member variable of object

I have tried searching for this but couldn't really find a proper answer. I have a stl::set of a custom class I made. The class looks like class myObject{ public: int a; int b; int c; // ...
0
votes
0answers
120 views

Invalid operand to binary expression only for set::insert() function [closed]

Here I have the following code. class setA : public std::set< A > { int a ; int b ; public : void DoInsert(); } void setA::DoInsert() { A aobj; this->insert(aobj); ...
0
votes
2answers
98 views

removing an element from a 2d set in c++

I have a 2 by 3 set<set<int> > named ss like this: 5 6 7 6 7 8 and I want to remove all 6's in it and end up like this: 5 7 7 8 I'm trying to do: for (set<set<int> ...
1
vote
1answer
116 views

Check for empty intersection in STL

How do I check for the empty intersection of two std::sets? I can use set_intersection, but that's unnecessarily slow, I need only bool answer. Remark: std::set means ordered sets, they are of the ...
1
vote
2answers
133 views

Comparator for set defined in the class of the set elements

I have a class, and the pointers to the objects of this class need to be placed in a std::set. I want to define the comparator inside the class. I have seen a few solutions where either a separate ...
1
vote
1answer
155 views

complexity of set::insert

I have read that insert operation in a set takes only log(n) time. How is that possible? To insert, first we have find the location in the sorted array where the new element must sit. Using binary ...
4
votes
1answer
126 views

Check if map in C++ contains all the keys from another map

I am planning to use two maps in C++, of type: std::map<char, Node>, where Node is a custom class. Suppose I have two maps, m1 and m2 of the type above, I want to find out whether m1 contains ...
4
votes
4answers
185 views

find() for std::set

I have a question on how the objects stored in set are compared. class A { public: char * name; }; I am storing objects of A in a set. I am provide a comparator class which provides ...
2
votes
4answers
346 views

distance between std::set begin() and std::set iterator in O(logn)

I need to find the index of an element in std::set. This index can be visualized as the distance of the iterator from the beginning. One way can be: for(int i = 0, set<int>::iterator it = ...
1
vote
2answers
317 views

Can the stl c++ priority queue be used with stl set?

My question is identical to Is there a Queue (PriorityQueue) implementation which is also a Set? except that this one is about c++ and stl. Is it possible to use the stl priority queue with the stl ...
0
votes
4answers
120 views

How to get std::set pointer to the raw data?

I want to pass the whole set as an argument to a function, like the way we do for arrays (i.e &array[0]). I am not able to figure out how to get the pointer to the raw data for a set.
0
votes
1answer
74 views

Error in VS2010 with set_intersection() and set<int>

I am trying to use the set_intersection() function. My code looks like below set<int> IntersectionSet; for(map<string, set<int>>::iterator it = mapArtist.begin() ; it != ...
0
votes
1answer
116 views

strange behavior of C++ STL container set

I am having some very strange behavior when using a set (it's actual a 3d vector of sets). I have the following at the end of a loop (the comments are behavior the fourth time the loop occurs, so it's ...
0
votes
0answers
141 views

Class member variable std::set not initialising

I want to create a class with a std::set variable that contains shared pointers for my own defined class, something like the following: class TestClass { public: TestClass(void){} ...
1
vote
2answers
123 views

c++ stl iterators

I am getting a lot of errors trying to use an iterator for three dimensional vector of sets of ints. See the following code (which is just select pieces, because the whole thing is too long; I think ...
1
vote
3answers
113 views

Can`t iterate over set

I need help. When trying iterate over a set I get the following error: Error 1 error C2440: 'initializing' : cannot convert from 'std::_Tree_const_iterator<_Mytree>' to ...
0
votes
1answer
76 views

Can`t add pointer on object to the set

Help me please. "object.cpp": bool OBJECT::operator== (const OBJECT &object) const { return *this == object; } bool OBJECT::operator< (const OBJECT &object) const { return ...
0
votes
3answers
350 views

Does `std::set` sort elements in every case?

From cplusplus.com reference it seems that std::set sorts elements. I need to have sorted strings, but I'm not sure if it will work well on every platform and compiler. Mainly GCC, MinGW, VC.

1 2 3 4