vote up 3 vote down star

I need to take a C++ vector with potentially a lot of elements, erase duplicates, and sort it. Looks like this code will do the trick: (Correction--it won't; next time I'll test before posting. Thanks for the feedback.)

vec.erase(
      std::unique(vec.begin(), vec.end()),
      vec.end());
std::sort(vec.begin(), vec.end());

Is it faster to erase the duplicates first (as coded above) or perform the sort first? If I do perform the sort first, is it guaranteed to remain sorted after std::unique is executed?

Or is there a more efficient way to do all this?

flag

67% accept rate
Good gravy that was fast. Go hivemind! – David Seiler Jun 25 at 0:47
I assume you don't have the option of checking before insert to avoid having dupes in the first place? – Joe Jun 25 at 0:48
Correct. That would be ideal. – Kyle Ryan Jun 26 at 0:00
I would suggest correcting the code above, or really indicate that it's WRONG. std::unique assumes the range is already sorted. – Matthieu M. Oct 19 at 9:23

9 Answers

vote up 7 vote down check

I agree with R. Pate and Todd Gardner; a set might be a good idea here. Even if you're stuck using vectors, if you have enough duplicates, you might be better off creating a set and to do the dirty work.

Let's compare three approaches:

Just using vector, sort + unique

sort( vec.begin(), vec.end() );
vec.erase( unique( vec.begin(), vec.end() ), vec.end() );

Convert to set (manually)

set<int> s;
unsigned size = vec.size();
for( unsigned i = 0; i < size; ++i ) s.insert( vec[i] );
vec.assign( s.begin(), s.end() );

Convert to set (using a constructor)

set<int> s( vec.begin(), vec.end() );
vec.assign( s.begin(), s.end() );

Here's how these perform as the number of duplicates changes:

comparison of vector and set approaches

Summary: when the number of duplicates is large enough, it's actually faster to convert to a set and then dump the data back into a vector.

And for some reason, doing the set conversion manually seems to be faster than using the set constructor -- at least on the toy random data that I used.

link|flag
+1 Nice evidence based rationale – Faisal Vali Jun 25 at 3:06
Why convert back to a vector? – Logan Capaldo Jun 25 at 3:07
I'm shocked that the constructor approach is consistently measurably worse than manual. You would that apart from some tiny constant overhead, it would just do the manual thing. Can anyone explain this? – Ari Jun 25 at 5:51
Question: Could this line in your first approach: vec.erase( unique( vec.begin(), vec.end() ), vec.end() ); be replaced with: with: vec.resize( unique (vec.begin(), vec.end()) - vec.begin() ) and if so, would it be any faster in large vector? – Dan Jun 25 at 16:29
@Dan: Sure, I think resize would work. It didn't seem any faster on a little test data, but a more thorough experiment might prove otherwise. – Nate Kohl Jun 25 at 23:25
show 2 more comments
vote up 2 vote down

Here's a template to do it for you:

template<typename T>
void removeDuplicates(std::vector<T>& vec)
{
    std::sort(vec.begin(), vec.end());
    vec.erase(std::unique(vec.begin(), vec.end()), vec.end());
}

call it like:

removeDuplicates<int>(vectorname);
link|flag
+1 Templatize away! - but you can just write removeDuplicates(vec), without explicitly specifying the template arguments – Faisal Vali Jun 25 at 3:08
Or even better, just have it take templated iterators directly (begin and end), and you can run it on other structures besides a vector. – Kyle Ryan Jun 25 at 23:58
vote up 3 vote down

Efficiency is a complicated concept. There's time vs. space considerations, as well as general measurements (where you only get vague answers such as O(n)) vs. specific ones (e.g. bubble sort can be much faster than quicksort, depending on input characteristics).

If you have relatively few duplicates, then sort followed by unique and erase seems the way to go. If you had relatively many duplicates, creating a set from the vector and letting it do the heavy lifting could easily beat it.

Don't just concentrate on time efficiency either. Sort+unique+erase operates in O(1) space, while the set construction operates in O(n) space. And neither directly lends itself to a map-reduce parallelization (for really huge datasets).

link|flag
What would give you map/reduce ability? The only one I can think of is a distributed merge sort and you can still only use one thread in the final merge. – Zan Lynx Jun 25 at 2:17
Yes, you must have one controlling node/thread. However, you can divide the problem as many times as required to place upper limits on the number of worker/child threads the controlling/parent thread deals with, and on the size of the dataset each leaf node must process. Not all problems are easily solvable with map-reduce, I simply wanted to point out there are people who deal with similar (on the surface, anyway) optimization issues, where dealing with 10 terabytes of data is called "Tuesday". – Roger Pate Jun 25 at 3:43
vote up 12 vote down

I'm not sure what you are using this for, so I can't say this with 100% certainty, but normally when I think "sorted, unique" container, I think of a std::set. It might be a better fit for your usecase:

std::set<Foo> foos(vec.begin(), vec.end()); // both sorted & unique already

Otherwise, sorting prior to calling unique (as the other answers pointed out) is the way to go.

link|flag
Well to the point! std::set is specified to be a sorted unique set. Most implementations use an efficient ordered binary tree or something similar. – notnoop Jun 25 at 2:23
+1 Thought of set as well. Didnt want to duplicate this answer – Tom Jun 25 at 2:28
Is std::set guaranteed to be sorted? It makes sense that in practice it would be, but does the standard require it? – MadCoder Jun 25 at 3:37
1  
Yup, see 23.1.4.9 "The fundamental property of iterators of associative containers is that they iterate through the containers in the non-descending order of keys where non-descending is defined by the comparison that was used to construct them" – Todd Gardner Jun 25 at 3:50
@MadCoder: It doesn't necessarily "make sense" that a set is implemented in a way that is sorted. There are also sets implemented using hash tables, which are not sorted. In fact, most people prefer using hash tables when available. But the naming convention in C++ just so happens that the sorted associative containers are named simply "set" / "map" (analogous to TreeSet / TreeMap in Java); and the hashed associative containers, which were left out of the standard, are called "hash_set" / "hash_map" (SGI STL) or "unordered_set" / "unordered_map" (TR1) (analogous to HashSet and HashMap in Java) – newacct Jun 25 at 5:54
vote up 1 vote down

As already stated, unique requires a sorted container. Additionally, unique doesn't actually remove elements from the container. Instead, they are copied to the end, unique returns an iterator pointing to the first such duplicate element, and you are expected to call erase to actually remove the elements.

link|flag
Does unique require a sorted container, or does it simply only rearrange the input sequence so it contains no adjacent duplicates? I thought the latter. – Roger Pate Jun 25 at 2:13
@Pate, you're correct. It doesn't require one. It removes adjacent duplicates. – sharth Jun 25 at 2:40
If you have a container that may have duplicates, and you want a container that doesn't have any duplicated values anywhere in the container then you must first sort the container, then pass it to unique, and then use erase to actually remove the duplicates. If you simply want to remove adjacent duplicates, then you won't have to sort the container. But you will end up with duplicated values: 1 2 2 3 2 4 2 5 2 will be changed to 1 2 3 2 4 2 5 2 if passed to unique without sorting, 1 2 3 4 5 if sorted, passed to unique and erase. – Max Lybbert Jun 25 at 18:14
vote up 7 vote down

std::unique only removes duplicate elements if they're neighbours: you have to sort the vector first before it will work as you intend.

std::unique is defined to be stable, so the vector will still be sorted after running unique on it.

link|flag
vote up 3 vote down

unique only removes consecutive duplicate elements (which is necessary for it to run in linear time), so you should perform the sort first. It will remain sorted after the call to unique.

link|flag
vote up 3 vote down

You need to sort it before you call unique because unique only removes duplicates that are next to each other.

edit: 38 seconds...

link|flag
vote up 7 vote down

std::unique only works on consecutive runs of duplicate elements, so you'd better sort first. However, it is stable, so your vector will remain sorted.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.