[C#] 如何对列表,字典等进行排序?

对列表进行排序

下面是一个基于C#的列表排序的案例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        // 创建一个列表
        List<int> numbers = new List<int>() { 5, 2, 8, 1, 10 };

        // 使用Sort方法对列表进行升序排序
        numbers.Sort();

        // 打印排序后的列表
        foreach (int number in numbers)
        {
            Console.WriteLine(number);
        }

        // 使用Reverse方法对列表进行降序排序
        numbers.Reverse();

        // 打印排序后的列表
        foreach (int number in numbers)
        {
            Console.WriteLine(number);
        }
    }
}

这个案例演示了对一个整数列表进行排序的过程。首先,使用Sort方法对列表进行升序排序,然后遍历列表并打印排序后的结果。接着,使用Reverse方法对列表进行降序排序,并再次遍历并打印结果。

输出结果:

1
2
5
8
10
10
8
5
2
1

对字典进行排序

在C#中,可以使用OrderBy方法对字典进行排序。下面是一个对字典按键值进行升序排序的示例:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        Dictionary<string, int> dictionary = new Dictionary<string, int>();
        dictionary.Add("apple", 2);
        dictionary.Add("banana", 1);
        dictionary.Add("orange", 3);

        var sortedDictionary = dictionary.OrderBy(x => x.Key);

        foreach (var item in sortedDictionary)
        {
            Console.WriteLine(item.Key + ": " + item.Value);
        }
    }
}

输出结果:apple: 2
banana: 1
orange: 3

如果要根据值进行排序,可以将OrderBy的委托参数改为x => x.Value

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

老狼IT工作室

你的鼓励将是我创作的最大动力。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值