C# 排序的多种实现方式

排序是我们编程时的常用操作,实现方式也有很多种,本篇文章列举几种我常用的用法,希望对大家有用!

01

数组排序

最常见的排序是对一个数组排序,比如:

  int[] aArray = new int[8] { 18, 17, 21, 23, 11, 31, 27, 38 };

第一种:我们最熟悉的冒泡排序法:即每个值都和它后面的数值比较,每次拿出最小值

static void Main(string[] args)        {            int[] aArray = new int[8] { 18, 17, 21, 23, 11, 31, 27, 38 };            for (int j = 0; j < aArray.Length - 1; j++)            {                for (int i = 0; i < aArray.Length - 1; i++)                {                    if (aArray[i] > aArray[i + 1])                    {                        int temp = aArray[i];                        aArray[i] = aArray[i + 1];                        aArray[i + 1] = temp;                    }
                }            }

            foreach (var a in aArray)            {                Console.Write($"{a} ");            }            Console.ReadKey();        }

运行结果:

第二种:利用Array.Sort排序:

① 升序排列:

 static void Main(string[] args)        {            int[] aArray = new int[8] { 18, 17, 21, 23, 11, 31, 27, 38 };            Array.Sort(aArray);
            foreach (var a in aArray)            {                Console.Write($"{a} ");            }            Console.ReadKey();        }

运行结果:

② 降序排列:先升序排列,然后对数组反转

  static void Main(string[] args)        {            int[] aArray = new int[8] { 18, 17, 21, 23, 11, 31, 27, 38 };            Array.Sort(aArray);            Array.Reverse(aArray);
            foreach (var a in aArray)            {                Console.Write($"{a} ");            }            Console.ReadKey();        }

运行结果:

02

List排序

大多数时候,我们需要将list集合里面的数据进行排序,

① 如果list直接放置的数值类型的数据就比较简单,比如:

List<int> aList = new List<int> { 18, 17, 21, 23, 11, 31, 27, 38 };

方法一:利用List<T> 自带的Sort排序方法

-. 升序排列:

 aList.Sort();

降序排列:

            aList.Sort();            aList.Reverse();

-. sort也可以用如下方式操作:

list.Sort((a, b) => a.CompareTo(b));//升序list.Sort((a, b) => b.CompareTo(a));//降序

方法二:利用List的OrderBy与OrderByDescending方法

升序排列:​​​​​​​

  List<int> aList = new List<int> { 18, 17, 21, 23, 11, 31, 27, 38 };            aList = aList.OrderBy(a => a).ToList();

降序排列:​​​​​​​

  List<int> aList = new List<int> { 18, 17, 21, 23, 11, 31, 27, 38 };            aList = aList.OrderByDescending(a => a).ToList();

方法三:利用link,这种感觉和方法二是一回事

 List<int> aList = new List<int> { 18, 17, 21, 23, 11, 31, 27, 38 }; aList = (from a in aList orderby a ascending select a).ToList();//升序 aList = (from a in aList orderby a descending select a).ToList();//降序

②如果list存放的是一个类型,比如:

方法一: 一个集合存放学生的信息,按照学生的成绩升序排列:这里列举了2种方法,方法一注释了

 static void Main(string[] args)        {            List<Student> stuList = new List<Student>            {                new Student() {name = "zyr", age = 23, score = 99},                new Student() {name = "zls", age = 25, score = 95},                new Student() {name = "zsq", age = 27, score = 100},                new Student() {name = "zlw", age = 15, score = 69},                new Student() {name = "ywe", age = 17, score = 72},                new Student() {name = "asw", age = 29, score = 58}            };
            //方法1 升序            //stuList.Sort((x, y) => x.score.CompareTo(y.score));            //方法2 升序            stuList = stuList.OrderBy(stu=>stu.score).ToList();
            foreach (var stu in stuList)            {                Console.WriteLine($"{stu}");            }            Console.ReadKey();        }
        public class Student        {            public string name { get; set; }            public int age { get; set; }            public int score { get; set; }
            public override string ToString()            {                return $"姓名是:{name},年龄是:{age},得分是:{score}";            }        } 

方法二: 加入这个学生成绩有重复的,对于重复的成绩按照年龄再排序:这里列举了2种方法,方法一注释了​​​​​​​

 static void Main(string[] args)        {            List<Student> stuList = new List<Student>            {                new Student() {name = "zyr", age = 23, score = 99},                new Student() {name = "zls", age = 25, score = 95},                new Student() {name = "zls", age = 22, score = 95},                new Student() {name = "zsq", age = 27, score = 100},                new Student() {name = "zlw", age = 15, score = 69},                new Student() {name = "ywe", age = 17, score = 72},                new Student() {name = "asw", age = 29, score = 58},                new Student() {name = "ywe", age = 18, score = 72},                new Student() {name = "zsq", age = 16, score = 100},            };
            //方法1 升序            //stuList.Sort((x, y) =>            //{            //    int ret = x.score.CompareTo(y.score);            //    if (ret == 0)            //    {            //        return x.age.CompareTo(y.age);            //    }            //    else            //    {            //        return ret;            //    }            //});            //方法2 升序            //stuList = stuList.OrderBy(stu=>stu.score).ThenBy(stu => stu.age).ToList();
            foreach (var stu in stuList)            {                Console.WriteLine($"{stu}");            }            Console.ReadKey();        }
        public class Student        {            public string name { get; set; }            public int age { get; set; }            public int score { get; set; }
            public override string ToString()            {                return $"姓名是:{name},年龄是:{age},得分是:{score}";            }        }
相关推荐
小胖伦的夕阳粉5 分钟前
js 获取树节点上某节点的最底层叶子节点数据
开发语言·javascript·ecmascript
不见长安见晨雾15 分钟前
将Java程序打包成EXE程序
java·开发语言
可愛小吉17 分钟前
Python 课程14-TensorFlow
开发语言·人工智能·python·tensorflow
编程零零七19 分钟前
Python数据分析工具(四):pymysql的用法
开发语言·python·oracle·数据挖掘·数据分析·python项目·python源码
六点半88821 分钟前
【C/C++】速通涉及string类的经典编程题
c语言·开发语言·c++·算法
汤姆和杰瑞在瑞士吃糯米粑粑22 分钟前
string类(C++)
开发语言·c++
逸狼38 分钟前
【JavaEE初阶】多线程(5 单例模式 \ 阻塞队列)
java·开发语言
Jack黄从零学c++1 小时前
自制网络连接工具(支持tcpudp,客户端服务端)
linux·c语言·开发语言·网络协议·tcp/ip·udp·信息与通信
friklogff1 小时前
【C#生态园】虚拟现实与增强现实:C#开发库全面评估
c#·ar·vr
VB.Net1 小时前
EmguCV学习笔记 VB.Net 12.1 二维码解析
opencv·计算机视觉·c#·图像·vb.net·二维码·emgucv