vote up 10 vote down star
3

Are there any dictionary classes in the .NET base class library which allow duplicate keys to be used? The only solution I've found is to create, for example, a class like:

Dictionary<string, List<object>>

But this is quite irritating to actually use. In Java, I believe a MultiMap accomplishes this, but cannot find an analog in .NET.

flag

13 Answers

vote up 22 vote down check

If you're using .NET 3.5, use the Lookup class.

link|flag
Awesome - I never heard about that. Btw, your book is great. – Kevin Dente Sep 28 '08 at 17:14
Nice. I think I have written this type of a collection a couple of times. I was not aware that this came with 3.5. – Jason Jackson Sep 28 '08 at 17:19
Thanks for the heads-up on Lookup. It offers a great way to partition (group) results from a linq query that aren't standard orderby criteria. – Robert Paulson Sep 29 '08 at 20:42
vote up 2 vote down

.NET does not have a class like that (though you could build one or find code for one somewhere I'm sure). The construct you mentioned in your question is a reasonable way to handle it.

link|flag
vote up 1 vote down

I think something like List<KeyValuePair<object, object>> would do the Job.

link|flag
How do you look something up in that list by it's key? – wizlb Sep 28 '08 at 17:00
You have to iterate through it: but I was not aware of the LookUp-Class of .NET 3.5: maybe this is more useful for searching in it's content. – MADMap Sep 28 '08 at 17:20
@wizlib: The only way is to loop through the list, which is not nearly as efficient as hashing. -1 – petr k. Sep 28 '08 at 17:21
vote up 1 vote down

Duplicate keys break the entire contract of the Dictionary. In a dictionary each key is unique and mapped to a single value. If you want to link an object to an arbitrary number of additional objects, the best bet might be something akin to a DataSet (in common parlance a table). Put your keys in one column and your values in the other. This is significantly slower than a dictionary, but that's your tradeoff for losing the ability to hash the key objects.

link|flag
vote up 1 vote down

Do you mean congruent and not an actual duplicate? Otherwise a hashtable wouldn't be able to work.

Congruent means that two separate keys can hash to the equivalent value, but the keys aren't equal.

For example: say your hashtable's hash function was just hashval = key mod 3. Both 1 and 4 map to 1, but are different values. This is where your idea of a list comes into play.

When you need to lookup 1, that value is hashed to 1, the list is traversed until the Key = 1 is found.

If you allowed for duplicate keys to be inserted, you wouldn't be able to differentiate which keys map to which values.

link|flag
A hash table already handles keys which happen to hash to the same value (this is called a collision). I am referring to a situation where you want to map multiple values to the same exact key. – waltersobchek.myopenid.com Sep 28 '08 at 19:21
vote up 2 vote down

If you are using strings as both the keys and the values, you can use System.Collections.Specialized.NameValueCollection, which will return an array of string values via the GetValues(string key) method.

link|flag
vote up 5 vote down

I just came across the PowerCollections library which includes, among other things, a class called MultiDictionary. This neatly wraps this type of functionality.

link|flag
vote up 0 vote down

This is the first implementation I was able to find; PowerCollections may have one as well, I've not checked. There isn't one in the base FCL.

link|flag
vote up 1 vote down

The NameValueCollection supports multiple string values under one key (which is also a string), but it is the only example I am aware of.

I tend to create constructs similar to the one in your example when I run into situations where I need that sort of functionality.

link|flag
vote up 0 vote down

Actually I would think your solution would be rather simple to use, a simple lookup gets you a list of items that match that key. What are you trying to do?

link|flag
It's annoying to add new items to the hash because you have to check if the list exists. – waltersobchek.myopenid.com Sep 28 '08 at 19:21
vote up 0 vote down

Have a look at C5's HashBag class.

link|flag
Wow, great library! – waltersobchek.myopenid.com Sep 28 '08 at 19:30
I am using it a lot, but I have no idea how many others ... – Tomas Pajonk Oct 1 '08 at 10:13
vote up 2 vote down

Very important note regarding use of Lookup:

You can create an instance of a Lookup(TKey, TElement) by calling ToLookup on an object that implements IEnumerable(T)

There is no public constructor to create a new instance of a Lookup(TKey, TElement). Additionally, Lookup(TKey, TElement) objects are immutable, that is, you cannot add or remove elements or keys from a Lookup(TKey, TElement) object after it has been created.

(from MSDN)

I'd think this would be a show stopper for most uses.

link|flag
vote up 0 vote down

The List class actually works quite well for key/value collections containing duplicates where you would like to iterate over the collection. Example:

List> list = new List>();

// add some values to the collection here

for (int i = 0; i < list.Count; i++) { Print(list[i].Key, list[i].Value); }

link|flag

Your Answer

Get an OpenID
or

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