How to sort List<List<string>> according to List<string> number of fields?

10,721

Solution 1

If you don't need to sort "in place" you can use LINQ to give you a new sorted, list.

var sorted = oldList.OrderBy( l => l.Count );

Otherwise you'll need to write your own Comparer that takes two lists and returns the ordering by their size.

public class CountComparer : IComparer<List<string>>
{
    #region IComparer<List<string>> Members

    public int Compare( List<string> x, List<string> y )
    {
        return x.Count.CompareTo( y.Count );
    }

    #endregion
}



oldList.Sort( new CountComparer() );

Or, as @Josh points out, you can do this with a lambda expression.

oldList.Sort( (a,b) => a.Count.CompareTo( b.Count ) )

IMO this latter works well if the comparison is relatively simple or used once, but the actual class may be preferable as the comparison gets more complex or if you need to repeat it in multiple places.

Solution 2

List<List<string>> list; // filled elsewhere
list.Sort((x,y) => x.Count.CompareTo(y.Count););

Solution 3

List<List<string>> strings = new List<List<string>>();

// add your strings

strings = new List<List<string>>(from str in strings orderby str.Count select str);

Obviously you can adapt this to fit your scenario, but this should give you the general idea of how to create a list that's sorted by the number of elements within a particular string in another list.

Solution 4

You can sort using the sort method, by creating your own Compararer or giving it a delegate of type Comparison<T>.

ls.Sort((x, y) => x.Count.CompareTo(y.Count));

Here's an example showing how to compare using a lambda expression.

Edit

A very simple way to reverse the sort is to multiply by negative -1

ls.Sort((x, y) => -1 * x.Count.CompareTo(y.Count));
Share:
10,721
user2120901
Author by

user2120901

Updated on July 12, 2022

Comments

  • user2120901
    user2120901 almost 2 years

    How do I sort List<List<string>> according to number of fields?

    The list got structure like

    a|b|c|d|eeee|rere|ewew|
    ewqewq|ewew|
    ewew|ewewewewew|
    

    By Sort I'd like to do it according to numbers of blockes (asc/desc)

    EDIT

    the <list<list<string>> is "items" and I access each list by items[0] each of

    these items[xx] is a list which means that I want them to sort the array to

        a|b|c|d|eeee|rere|ewew|
        a|b|c|d|eeee|rere
        a|b|c|d|eeee