Top "Multimap" questions

A container similar to a map but allowing duplicate keys

Map implementation with duplicate keys

I want to have a map with duplicate keys. I know there are many map implementations (Eclipse shows me about 50), …

java duplicates guava multimap
Duplicate keys in .NET dictionaries?

Are there any dictionary classes in the .NET base class library which allow duplicate keys to be used? The only …

c# .net dictionary multimap
How to achieve this Map<String, List<>> structure

I have data like below: Key value ----- ------ car toyota car bmw car honda fruit apple fruit banana computer …

java data-structures multimap multi-mapping
How to create a Multimap<K,V> from a Map<K, Collection<V>>?

I didn't find such a multimap construction... When I want to do this, I iterate over the map, and populate …

java guava multimap
Multi-valued hashtable in Java

Is it possible to have multiple values for the same key in a hash table? If not, can you suggest …

java collections map hashtable multimap
How to iterate through google multimap

I have to iterate through google multimap. But I am using jdk 1.4 and can't switch to higher version. So i …

java guava multimap
stl::multimap - how do i get groups of data?

Multimap essentially has groups of data sorted by the key. I want a method by which I could access these …

c++ stl multimap
multimap in .NET

I need an equivalent to c++'s std::multimap<K, V, Comp, Alloc> in C-sharp. Does it exist …

c# multimap
Is there an alternative to Dictionary/SortedList that allows duplicates?

Possible Duplicate: C# Sortable collection which allows duplicate keys Basically I'd like to make a Dictionary work with duplicate keys …

.net dictionary priority-queue multimap