How can I get the first N elements from a multiset structure, without constantly getting the first (.begin()) element and then erasing it?

I just want to sum the first N elements without affecting the multiset.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I just want to sum the first N elements without affecting the multiset.

#include <numeric>
#include <iterator>

// ...

int sum = std::accumulate(my_set.begin(), std::next(my_set.begin(), N));

std::next is a C++11 library addition. Here is a solution for older compilers:

std::multiset<int>::iterator it = my_set.begin();
std::advance(it, N);
int sum = std::accumulate(my_set.begin(), it);

Both solutions iterate over the multiset twice. If you want to prevent that, use a manual loop:

int sum = 0;
std::multiset<int>::iterator it = my_set.begin();
for (int i = 0; i < N; ++i)
{
    sum += *it++;
}
link|improve this answer
It says "next" is undefined, or smth like that – Cristy Jan 22 at 10:38
@Cristy updated – FredOverflow Jan 22 at 10:46
I "solved" the problem by manually iterating through first N elements. – Cristy Jan 22 at 10:57
I think manual iteration is fine in this case. – FredOverflow Jan 22 at 11:33
feedback

You could iterate over the multiset like you would over any other container, and stop once you've seen n elements.

link|improve this answer
If I iterate I will get the elements in order? – Cristy Jan 22 at 10:24
@Cristy: yes you will. – aix Jan 22 at 10:25
Thanks, I'll try that and see if it works. :* – Cristy Jan 22 at 10:27
1  
Comfortably: stackoverflow.com/questions/530462/… – Scott W Jan 22 at 10:27
feedback

Your Answer

 
or
required, but never shown

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