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.
|
feedback
|
Both solutions iterate over the multiset twice. If you want to prevent that, use a manual loop:
| |||||||||
|
feedback
|
|
You could iterate over the | |||||||||||
feedback
|