C#中始终保持有序的泛型集合

本文介绍C#中SortedSet泛型集合的使用,该集合始终保持数据有序,适用于频繁排序需求,同时保持高性能。通过实例演示了SortedSet与普通List在添加随机数后的区别,展示了SortedSet自动排序的优势。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C#中始终保持有序的泛型集合

在System.Collections.Generic命名空间下面的泛型集合SortedSet,对于经常需要排序的需求来说是很好用的了。集合中的数据始终处于一个有序状态,同时还不会影响性能。
下面用一个int类型的集合来进行实例说明

 class Program
    {
       static List<int> list = new List<int>();
       static  SortedSet<int> sorted = new SortedSet<int>();
        static void Main(string[] args)
        {
            int count = 0;
            Random r = new Random();
            while (count<20)
            {
                int temp =r.Next(0, 100);
                list.Add(temp);
                sorted.Add(temp);
                count++;
            }

            Console.WriteLine("List中的数据如下:");
            foreach(var item in Program.list)
            {
                Console.Write($"{item}"+"\t");
            }
            Console.WriteLine("\n"+"SortedSet中的数据如下:");
            foreach(var item in Program.sorted)
            {
                Console.Write($"{item}"+"\t");

            }
            Console.ReadKey();
        }
//程序的运行结果如下:

	//List中的数据如下:
	//31      85      49      52      99      18      2       49      98      78      48      31      80      38      44
	//        45      1       1       69      63
	//SortedSet中的数据如下:
	//1       2       18      31      38      44      45      48      49      52      63      69      78      80      85
	//        98      99

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值