vote up 4 vote down star
3

I happen to use this kind of structure quite a lot:

Dictionary<string, List<string>> Foo = new Dictionary<string, List<string>>();

Which leads to this kind of code :

foreach (DataRow dr in ds.Tables[0].Rows)
{
    List<string> bar;
    if (!Foo.TryGetValue(dr["Key"].ToString(), out desks))
    {
        bar= new List<string>();
        Foo.Add(dr["Key"].ToString(), bar);
    }
    bar.Add(dr["Value"].ToString());
}

Do you think it's worth writing a custom DictionaryOfList class which would handle this kind of things automatically?

Is there another way to lazily initialize those Lists?

flag

49% accept rate
What kinda thing do you find this structure useful for? being a fairly new programmer I think I've yet to use the dictionary structure all that much! – Zeus May 15 at 9:47
Framework version info would be useful, LINQ could make this a lot cleaner – AnthonyWJones May 15 at 9:47
@Anthony : Indeed. edited tags to mention .net3.5 – Brann May 15 at 9:50
1  
Generic Aspirin, perhaps ? – Cerebrus May 15 at 9:57

6 Answers

vote up 7 vote down

You can write an extension method - GetValueOrCreateDefault() or something like that:

foreach (DataRow dr in ds.Tables[0].Rows)
{
    Foo.GetValueOrCreateDefault( dr["Key"] ).Add( dr["Value"].ToString() )
}

Maybe you can even write an extension method for the whole initialisation?

link|flag
Nice solution, but I would go further and create an extension method Dictionary<TKey,TValue>.AddPair(TKey, TValue). This will be much easier to read and understand if someone else has to look over the code. – m0rb May 15 at 9:56
vote up 3 vote down

A dictionary of a list... in .NET 3.5 that would be an ILookup<TKey,TValue>. The default implementation (Lookup<TKey,TValue>) is immutable, but I wrote an EditableLookup<TKey,TValue> for MiscUtil. This will be a lot simpler to use - i.e.

var data = new EditableLookup<string, int>();
data.Add("abc",123);
data.Add("def",456);
data.Add("abc",789);

foreach(int i in data["abc"]) {
    Console.WriteLine(i); // 123 & 789
}

Other than that, an extension method:

public static void Add<TKey, TList, TValue>(
    this IDictionary<TKey, TList> lookup,
    TKey key, TValue value)
    where TList : class, ICollection<TValue>, new()
{
    TList list;
    if (!lookup.TryGetValue(key, out list))
    {
        lookup.Add(key, list = new TList());
    }
    list.Add(value);
}

static void Main() {
    var data = new Dictionary<string, List<string>>();
    data.Add("abc", "def");
}
link|flag
Nice! I <4 extension methods. – Matt Hamilton May 15 at 10:45
Indeed nice, although I'm still not really convinced when it comes to maintainability and obscure stuff that can be done with it. For example, implementing default implementations for interfaces using extension methods. But in this case very handy! – Kevin May 15 at 12:51
vote up 2 vote down

I think the following should do:

class DictionaryOfList : Dictionary<string, List<string>> {}
  • Edit I should read more properly. This does not answer the question. Tanascius has supplied a neat way to solve it.
link|flag
Thanks, that's handy! – iik May 15 at 10:10
vote up 1 vote down

Add a reference to System.Data.DataSetExtensions and you can use the Linq extensions:

var dictOfLst = ds.Tables[0].Rows.
    //group by the key field
    GroupBy( dr => dr.Field<string>("key") ).
    ToDictionary(
        grp => grp.Key,
        //convert the collection of rows into values
        grp => grp.Select( dr => dr.Field<string>("value") ).ToList() );

I'm not sure I'd bother with another class, but a utility or extension method could make this simpler:

public static Dictionary<TKey, List<TValue>> ToGroupedDictionary<TKey, List<TValue>>(
    this DataTable input, 
    Func<TKey, DataRow> keyConverter, 
    Func<TValue, DataRow> valueConverter )
{
    return input.Rows.
        //group by the key field
        GroupBy( keyConverter ).
        ToDictionary(
            grp => grp.Key,
            //convert the collection of rows into values
            grp => grp.Select( valueConverter ).ToList() );
}

//now you have a simpler syntax
var dictOfLst = ds.Tables[0].ToGroupedDictionary(
    dr => dr.Field<string>("key"),
    dr => dr.Field<string>("value") );
link|flag
1  
Have you see ToLookup? – Marc Gravell May 15 at 11:53
vote up 0 vote down

Don't forget the using directive.

This isn't directly responsive, but may be helpful anyway. A "using alias" for a generic collection type may make your code easier on the eyes.

using StoreBox = System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>>; 
using ListOfStrings = System.Collections.Generic.List<string>; 
class Program
{
    static void Main(string[] args)
    {
      var b = new StoreBox ();
      b.Add("Red", new ListOfStrings {"Rosso", "red" });
      b.Add("Green", new ListOfStrings {"Verde", "green" });
    }
}

Credit to SO for this hint.

link|flag
vote up 0 vote down

Why not just simplify a little:

foreach (DataRow dr in ds.Tables[0].Rows)
{
   string key = dr["Key"].ToString();
   if (!Foo.ContainsKey(key)) Foo.Add(key, new List<string>());
   Foo[key].Add(dr["Value"].ToString());
}
link|flag
A reason not to do that is that the complexity would be O(2n) instead of O(n). Of course in most cases, that's probably not really an issue. – Brann May 16 at 21:45

Your Answer

Get an OpenID
or

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