For documentation purposes, I'm looking for a canonical or standard name for this simple data structure. It seems like there should be one, but Google and my memory are failing me.

Here's an example in JSON-style notation:

 {
     drummers: ['Ringo Starr', 'Danny Carey', 'Keith Moon'],
     singers: ['Chris Cornell', 'Peter Gabriel'],
     guitarists: ['Stevie Ray Vaughan', 'Slash'],
     cowbell_players: [],
     bassists: ['Flea']
 }
link|improve this question

75% accept rate
Hash table? Dictionary? Map? – Dwight Mar 30 '11 at 18:02
1  
@Dwight: Those are independent of the type of the mapped to. – delnan Mar 30 '11 at 18:04
2  
Also, we need more cowbell. – Femaref Mar 30 '11 at 18:06
feedback

2 Answers

up vote 3 down vote accepted

A multimap, perhaps?

A multimap (sometimes also multihash) is a generalization of a map or associative array abstract data type in which more than one value may be associated with and returned for a given key. (snip) Often the multimap is implemented as a map with lists or sets as the map values.

link|improve this answer
Yeah, I'd say so. You beat me to it. – Jmoney38 Mar 30 '11 at 18:06
That's it. It's been so long since I've used C++ that I couldn't dredge it up from memory -- I kept thinking of "multiset." – Steven Huwig Mar 30 '11 at 18:18
feedback

In general, it it is a map, mapping a key to a list. Dictionary is appropiate as well, Hashtable wouldn't be as Hashtable connotates an implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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