As the question states ... I don't get the point about multisets / multimaps.
So, what's the purpose?
|
|
|
Some use cases: multimap
multiset is in essence a map with a key and a integer count.
|
|||
|
|
|
http://www.cplusplus.com/reference/stl/multimap/
It is kind of registry where elements can share a key. You can think of companies and employees. Street address is a key and employees are values. |
|||
|
|
|
Here's what Wikipedia says about uses:
|
|||||
|
|
One example where a multimap would be useful if you had a situation where most of the time the keys are unique, but sometimes they aren't. For example, if you were creating a cache class that used a hash as a key. Most of the time two different objects will not have the same hash, so the keys will be unique. But it is possible that you will get hash collisions for different objects, so you would want a multimap to cover that situation. Another example would be any sort of non-unique index (like in a database). As for a multiset - I think those would be less useful. Only thing I can think of would be to use it as a kind of automatically sorted list. |
|||
|
|
|
A multiset or multimap is simply for situations where there might be more than one of a particular item. For example, let's say you wanted to create an index for a book. You'd scan through the text, throw out all the really common meaningless words ("a", "an", "the", etc.) and then make a list of all the rest, and the place in the book where each occurred. Quite a few of the words will appear on more than one page, in which case you'll have multiple entries mapping from one word to different pages. One way to handle that would be a multimap from words to page numbers. |
|||
|
|
|
Use multimap, wherever you want to use tree kind of a structure. |
|||
|