How to access the values stored in the data structure multiset, C++?
for (int i = 0; i < mlt.size; i++)
{
cout << mlt[i];
}
|
How to access the values stored in the data structure multiset, C++?
|
||||
|
|
|
If
|
|||
|
|
|
Look at this example: http://www.cplusplus.com/reference/stl/multiset/begin/ Basically, you can iterate through the multiset the same way as through any other stl container. |
|||
|
|
|
You should not (normally) do so by writing a loop. You should normally use a pre-written algorithm, such as
Depending on the situation, there are quite a few variations that can be useful, such as using the |
|||||||||||||
|