linq 对列表排序< int>

anhgbhbe  于 2022-12-06  发布在  其他
关注(0)|答案(7)|浏览(139)

使用C#对列表进行数字排序的最佳方法是什么?我的列表有5,7,3项,我希望它们按3,5,7排序。我知道一些更长的方法,但我想linq有一个更快的方法?
对不起,这是一天结束,我的思想是其他地方工作,没有看到它改变第一次:(

fxnxkyjh

fxnxkyjh1#

这里不需要LINQ,只需调用Sort

list.Sort();

示例代码:

List<int> list = new List<int> { 5, 7, 3 };
list.Sort();
foreach (int x in list)
{
    Console.WriteLine(x);
}

结果:

3
5
7
ddrv8njm

ddrv8njm2#

保持简单是关键。
尝试以下。

var values = new int[5,7,3];
values = values.OrderBy(p => p).ToList();
w8f9ii69

w8f9ii693#

var values = new int[] {5,7,3};
var sortedValues = values.OrderBy(v => v).ToList();   // result 3,5,7
gojuced7

gojuced74#

List<int> list = new List<int> { 5, 7, 3 };  
list.Sort((x,y)=> y.CompareTo(x));  
list.ForEach(action => { Console.Write(action + " "); });
qqrboqgw

qqrboqgw5#

对整数列表进行降序排序

class Program
    {       
        private class SortIntDescending : IComparer<int>
        {
            int IComparer<int>.Compare(int a, int b) //implement Compare
            {              
                if (a > b)
                    return -1; //normally greater than = 1
                if (a < b)
                    return 1; // normally smaller than = -1
                else
                    return 0; // equal
            }
        }

        static List<int> intlist = new List<int>(); // make a list

        static void Main(string[] args)
        {
            intlist.Add(5); //fill the list with 5 ints
            intlist.Add(3);
            intlist.Add(5);
            intlist.Add(15);
            intlist.Add(7);

            Console.WriteLine("Unsorted list :");
            Printlist(intlist);

            Console.WriteLine();
            // intlist.Sort(); uses the default Comparer, which is ascending
            intlist.Sort(new SortIntDescending()); //sort descending

            Console.WriteLine("Sorted descending list :");
            Printlist(intlist);

            Console.ReadKey(); //wait for keydown
        }

        static void Printlist(List<int> L)
        {
            foreach (int i in L) //print on the console
            {
                Console.WriteLine(i);
            }
        }
    }
n53p2ov0

n53p2ov06#

对int列表进行降序排序,您可以先排序,然后反向排序

class Program
{
    static void Main(string[] args)
    {

        List<int> myList = new List<int>();

        myList.Add(38);
        myList.Add(34);
        myList.Add(35);
        myList.Add(36);
        myList.Add(37);

        myList.Sort();
        myList.Reverse();
        myList.ForEach(Console.WriteLine);

    }


}
wh6knrhe

wh6knrhe7#

double jhon = 3;
double[] numbers = new double[3];
for (int i = 0; i < 3; i++)

{
    numbers[i] = double.Parse(Console.ReadLine());

}
Console.WriteLine("\n");

Array.Sort(numbers);

for (int i = 0; i < 3; i++)
{
    Console.WriteLine(numbers[i]);

}

Console.ReadLine();

相关问题