Linq Order by a specific number first then show all rest in order

C#asp.netLinqSorting

C# Problem Overview


If i have a list of numbers:

1,2,3,4,5,6,7,8

and I want to order by a specific number and then show the rest. For example if i pick '3' the list should be:

3,1,2,4,5,6,7,8

Looking for linq and c#. Thank you

C# Solutions


Solution 1 - C#

You can use a comparison in OrderBy or ThenBy to perform a conditional sorting.

list.OrderByDescending(i => i == 3).ThenBy(i => i);

I use OrderByDescending because i want matching results first(true is "higher" than false).

Solution 2 - C#

A couple of answers already sort the last few numbers (which may be correct since you're only showing an already sorted list). If you want the "unselected" numbers to be displayed in their original, not necessarily sorted order instead of sorted, you can instead do;

int num = 3;
var result = list.Where(x => x == num).Concat(list.Where(x => x != num));

As @DuaneTheriot points out, http://msdn.microsoft.com/en-us/library/bb534966.aspx">IEnumerable's extension method OrderBy does a stable sort and won't change the order of elements that have an equal key. In other words;

var result = list.OrderBy(x => x != 3);

works just as well to sort 3 first and keep the order of all other elements.

Solution 3 - C#

Maybe something like this:

List<int> ls=new List<int>{1,2,3,4,5,6,7,8};
int nbr=3;
var result= ls.OrderBy (l =>(l==nbr?int.MinValue:l));

Solution 4 - C#

public static IEnumerable<T> TakeAndOrder<T>(this IEnumerable<T> items, Func<T, bool> f)
{		
	foreach ( var item in items.Where(f))
		yield return item;
	foreach (var item in items.Where(i=>!f(i)).OrderBy(i=>i))
		yield return item;
}


var items = new [] {1, 4, 2, 5, 3};
items.TakeAndOrder(i=> i == 4);

Solution 5 - C#

Using @joachim-isaksson idea I came up with this extension method:

public static IOrderedEnumerable<TSource> OrderByWithGivenValueFirst<TSource, TKey>(
    this IEnumerable<TSource> source, 
    Func<TSource, TKey> keySelector,
    TKey value
    ) 
    => source.OrderBy(x => !keySelector(x).Equals(value));

Test:

[TestFixture]
public class when_ordering_by_with_given_value_first
{
    [Test]
    public void given_value_is_first_in_the_collection()
    {
        var languages = new TestRecord[] {new("cs-CZ"), new("en-US"), new("de-DE"), new("sk-SK")};

        languages.OrderByWithGivenValueFirst(x => x.Language, "en-US")
            .ShouldBe(new TestRecord[] {new("en-US"), new("cs-CZ"), new("de-DE"), new("sk-SK")});

    }

    private record TestRecord(string Language);
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionvtsView Question on Stackoverflow
Solution 1 - C#Tim SchmelterView Answer on Stackoverflow
Solution 2 - C#Joachim IsakssonView Answer on Stackoverflow
Solution 3 - C#ArionView Answer on Stackoverflow
Solution 4 - C#Adrian IftodeView Answer on Stackoverflow
Solution 5 - C#xhafanView Answer on Stackoverflow