vote up 19 vote down star
8

I often have a Dictionary of keys & values and need to sort it by value. For example, I have a hash of words and their frequencies, and want to order them by frequency.

There's SortedList which is good for a single value (frequency), but I want to map it back to the word.

SortedDictionary orders by key, not value. Some resort to a custom class, but what's the cleanest way?

flag

7 Answers

vote up 21 vote down check
myList.Sort(
delegate(KeyValuePair<string, string> firstPair,
KeyValuePair<string, string> nextPair)
{
return firstPair.Value.CompareTo(nextPair.Value);
}
);

Since you're targeting .net 2.0 or above, you can simplify this into lambda syntax -- it's equivalent but shorter. If you're targeting .net 2.0 you can only use this syntax if you're using the compiler from vs2008.

myList.Sort((firstPair,nextPair) =>
{
return firstPair.Value.CompareTo(nextPair.Value);
}
);
link|flag
I used this solution (Thanks!) but was confused for a minute until I read Michael Stum's post (and his code snippet from John Timney) and realised that myList is a secondary object, a list of KeyValuePairs, which is created from the dictionary, and then sorted. – Robin Bennett Mar 31 at 13:33
vote up -2 vote down

You'd never be able to sort a dictionary anyway. They are not actually ordered. The guarantees for a dictionary are that the key and value collections are iterable, and values can be retrieved by index or key, but here is no guarantee of any particular order. Hence you would need to get the name value pair into a list.

link|flag
A sorted dictionary could yield a list of key-value pairs though. – recursive Dec 20 '08 at 5:19
vote up 19 vote down

Why not use LINQ:

System.Collections.Generic.Dictionary<string, int> myDict = new Dictionary<string, int>();
    myDict.Add("one", 1);
    myDict.Add("four", 4);
    myDict.Add("two", 2);
    myDict.Add("three", 3);

    var sortedDict = (from entry in myDict orderby entry.Value ascending select entry);

This would also allow for great flexibility in that you can select the top 10, 20 10% etc. Or if you are using your word frequency index for type-ahead, you could also include StartsWith clause as well.

link|flag
Thanks that really worked well for me. – Crash893 Apr 30 at 19:43
Great solution - best ive seen for this - and you dont have to create a list of keyvalue pairs before using it.. Very easy to understand :-) – schmoopy Sep 21 at 20:12
vote up 2 vote down

@Leon: Thanks for the tip. This is for an internal app so we're using .NET 3.5. I like the lambda syntax as I'm not getting lost in the delegate/tag soup :).

link|flag
vote up 1 vote down

@Michael: Thanks for the reply! I did see that post, but was hoping to find a solution without creating an intermediate list.

I'm more familiar with Ruby than C#, which is like this

hash.sort{|a,b| a[1]<=>b[1]}

so I prefer the OrderBy method because it functions similarly to this. Thanks for the tip though.

link|flag
vote up 4 vote down

On a high level, you have no other choice then to walk through the whole Dictionary and look at each value.

Maybe this helps: http://bytes.com/forum/thread563638.html Copy/Pasting from John Timney:

Dictionary<string, string> s = new Dictionary<string, string>();
s.Add("1", "a Item");
s.Add("2", "c Item");
s.Add("3", "b Item");

List<KeyValuePair<string, string>> myList = new List<KeyValuePair<string, string>>(s);
myList.Sort(
    delegate(KeyValuePair<string, stringfirstPair>,
    KeyValuePair<string, stringnextPair>)
    {
        return firstPair.Value.CompareTo(nextPair.Value);
    }
);
link|flag
@Michael: Some of your <> characters have got butchered here – Chris Gill Sep 10 at 14:54
Thanks, fixed (hopefully :)) – Michael Stum Sep 10 at 14:56
vote up 5 vote down

Looking around, and using some C# 3.0 features we can do this:

foreach (KeyValuePair<string, int> item in keywordCounts.OrderBy(key => key.Value))
{
// do something with item.Key and item.Value
}

This is the cleanest way I've seen and is similar to the Ruby way of handling hashes.

link|flag
I was trying to sort a dictionary while adding the KeyValuePairs to a ComboBox... this worked great! Thanks! – Jason Down Mar 17 at 18:19
@Jason: You're welcome! – kurious Mar 23 at 22:44

Your Answer

Get an OpenID
or

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