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?

link|improve this question

feedback

11 Answers

up vote 112 down vote accepted
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 (or above).

myList.Sort((firstPair,nextPair) =>
    {
        return firstPair.Value.CompareTo(nextPair.Value);
    }
);
link|improve this answer
10  
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 '09 at 13:33
1  
sorry but this answer was difficult to understand as im not familiar with the delegate keyword (maybe different in vb), n it isn't clear where the sorting is happening as you'd either need to run number of item multiplied by number of items (no of items squared) comparisons by searching/comparing each element to the whole dictionary for each element, or if you are doing just comparing between current n last then you'd need to do that in more than one loop over the collection, which is why i didnt 'get it' as is. maybe more info on where the sorting n reordering is occuring woulda been helpful! – Erx_VB.NExT.Coder Sep 12 '10 at 15:07
10  
it it's one liner - You don't need braces. it can be rewritten as myList.Sort((x,y)=>x.Value.CompareTo(y.Value)); – Arnis L. Sep 26 '10 at 16:40
1  
How would this delegate statement in the sorting method look in VB.NET? – EasyDot Nov 2 '10 at 12:56
feedback

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).ToDictionary(pair => pair.Key, pair => pair.Value);

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|improve this answer
1  
Thanks that really worked well for me. – Crash893 Apr 30 '09 at 19:43
1  
spot on! Thanks – Jon Mar 15 '10 at 22:37
6  
How can I change sortedDict back into a Dictionary<string, int>? Posted new SO question here: stackoverflow.com/questions/3066182/… – Kache Jun 17 '10 at 22:47
3  
Can I double 'up' this answer, please? Cleanest ever. Awesome – Narmatha Balasundaram Sep 3 '10 at 14:04
1  
I'm not sure if it always works because iterating over dictionary doesn't guarantee that KeyValuePairs are "pulled" in the same order they have been inserted. Ergo, it doesn't matter if you use orderby in LINQ because Dictionary can change order of inserted elements. It usually works as expected but there is NO GUARANTEE, especially for large dictionaries. – Bozydar Sobczak Jan 27 at 8:23
show 10 more comments
feedback

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|improve this answer
I was trying to sort a dictionary while adding the KeyValuePairs to a ComboBox... this worked great! Thanks! – Jason Down Mar 17 '09 at 18:19
@Jason: You're welcome! – kurious Mar 23 '09 at 22:44
2  
Don't forget to add the System.Linq namespace when using this syntax. – emddudley Jun 7 '10 at 15:10
1  
This is the best answer; better than the toprated and accepted one. – Cheeso Dec 12 '10 at 22:20
feedback
var ordered = dict.OrderBy(x => x.Value);
link|improve this answer
2  
I'm not sure why this solution is not more popular - perhaps because it requires .NET 3.5? – Gravitas Jun 16 '11 at 8:48
This is a good solution, but it should have this right before the ending semi-colon: .ToDictionary(pair => pair.Key, pair => pair.Value); – theJerm Mar 30 at 17:55
feedback

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, string> firstPair,
    KeyValuePair<string, string> nextPair)
    {
        return firstPair.Value.CompareTo(nextPair.Value);
    }
);
link|improve this answer
@Michael: Some of your <> characters have got butchered here – Chris Gill Sep 10 '09 at 14:54
Thanks, fixed (hopefully :)) – Michael Stum Sep 10 '09 at 14:56
3  
stringnextPair -> string> nextPair stringfirstPair -> string> firstPair – Art Feb 25 '10 at 23:38
feedback

To sort a Dictionary by value and save it back to itself (so that when you foreach over it the values come out in order):

dict = dict.OrderBy(x => x.Value).ToDictionary(x => x.Key, x => x.Value);
link|improve this answer
Yes! Exactly what I wanted, and only one line of code! – Jeff Roe Aug 12 '11 at 16:18
1  
You can also use OrderByDescending if you want to sort into a descending list. – Mendokusai Aug 17 '11 at 2:16
Worked for me, although I had to change it slightly to: Dictionary<key, value> dict = dict.OrderBy(x => x.Value).ToDictionary(x => x.Key, x => x.Value); – Josh Dec 15 '11 at 9:34
Working perfectly thanks. – MonsterMMORPG Feb 23 at 12:30
Awesome, thanks! – Mark Ursino Mar 13 at 20:42
feedback

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|improve this answer
A sorted dictionary could yield a list of key-value pairs though. – recursive Dec 20 '08 at 5:19
@recursive Any dictionary should yield that. Interesting to note that my answer, which is correct, but incomplete (could have done what the better examples did) is voted below an invalid answer that would result in exceptions on duplicate values in the original dictionary (keys are unique, values are not guaranteed to be) – Roger Willcocks Jul 7 '10 at 5:30
1  
This is the bes answer, because Dictionary is not sortable. It hashes Keys and you can perform an extremely fast seek operation on it. – Paulius Zaliaduonis Aug 24 '11 at 9:09
feedback

The easiest way to get a sorted Dictionary is to use the built in SortedDictionary class:

//Sorts sections according to the key value stored on "sections" unsorted dictionary, which is passed as a constructor argument
System.Collections.Generic.SortedDictionary<int, string> sortedSections = null;
if (sections != null)
{
    sortedSections = new SortedDictionary<int, string>(sections);
}

sortedSections will contains the sorted version of sections

link|improve this answer
feedback

Or for fun you could use some LINQ extension goodness:

var dictionary = new Dictionary<string, int> { { "c", 3 }, { "a", 1 }, { "b", 2 } };
dictionary.OrderBy(x => x.Value)
  .ForEach(x => Console.WriteLine("{0}={1}", x.Key,x.Value));
link|improve this answer
feedback

Sorting a SortedDictionary list to bind into a ListView control using VB.Net:

    Dim MyDictionary As SortedDictionary(Of String, MyDictionaryEntry)

        MyDictionaryListView.ItemsSource = MyDictionary.Values.OrderByDescending(Function(entry) entry.MyValue)

Public Class MyDictionaryEntry ' Need Property for GridViewColumn DisplayMemberBinding
    Public Property MyString As String
    Public Property MyValue As Integer
End Class

Xaml:

<ListView Name="MyDictionaryListView">
    <ListView.View>
        <GridView>
            <GridViewColumn DisplayMemberBinding="{Binding Path=MyString}" Header="MyStringColumnName"></GridViewColumn>
            <GridViewColumn DisplayMemberBinding="{Binding Path=MyValue}" Header="MyValueColumnName"></GridViewColumn>
         </GridView>
    </ListView.View>
</ListView>
link|improve this answer
feedback

Here are some extension methods:

public static Dictionary<K, T> OrderByKey<K, T>( this Dictionary<K, T> dicionario )
{
    return dicionario.OrderBy( p => p.Key ).ToDictionary( p => p.Key, p => p.Value );
}

public static Dictionary<K, T> OrderByValue<K, T>( this Dictionary<K, T> dicionario )
{
    return dicionario.OrderBy( p => p.Value ).ToDictionary( p => p.Key, p => p.Value );
}

public static Dictionary<K, T> OrderByKeyDescending<K, T>( this Dictionary<K, T> dicionario )
{
    return dicionario.OrderByDescending( p => p.Key ).ToDictionary( p => p.Key, p => p.Value );
}

public static Dictionary<K, T> OrderByValueDescending<K, T>( this Dictionary<K, T> dicionario )
{
    return dicionario.OrderByDescending( p => p.Value ).ToDictionary( p => p.Key, p => p.Value );
}
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.