C# —— Sort排序

Array.Sort(ints);// 默认的排序方式 正序排序

cs 复制代码
int[] ints = { 1, 2, 3, 89, 20, 100 };
Console.Write(string.Join(",", ints));

参数1 是排序的数组,参数2 是函数 函数的两个参数 是数组的两个元素,

当返回x-y 正序排序

cs 复制代码
Array.Sort(ints, (x, y) => x - y);// 正序排序
Console.Write(string.Join(",", ints));

当返回y-x 正序排序

cs 复制代码
Array.Sort(ints, (x, y) => y - x);// 倒序排序
Console.WriteLine(string.Join(",", ints));

数组的元素是字符串 字符串也可以进行比较

因为字符串不能使用x-y这种方式进行比较

使用 CaseInsensitiveComparer.Default.Compare 对数字 字符串 汉字都可以进行对比

return CaseInsensitiveComparer.Default.Compare(x, y); // 正序排序

cs 复制代码
string[] strings = { "ad", "啊", "d", "ac", "9", "1", "中" };
Array.Sort(strings, (x, y) =>
{
    return CaseInsensitiveComparer.Default.Compare(y, x);// 倒序排序
});
Console.WriteLine(string.Join(",", strings));

实例:

cs 复制代码
string[] pukes = { "大王", "3", "8", "10", "J", "小王", "2" };

string[] leve1 = { "大王", "小王", "2", "A", "K", "Q", "J", "10", "9", "8", "7", "6", "5", "4", "3" };

Array.Sort(pukes, (x, y) =>
{
    // 将x和y转换对应的数字level数组的数字
    int levex = Array.IndexOf(leve1, x);// 获取原数组x 在leve1数组的索引值
    int levay = Array.IndexOf(leve1, y);// 获取y在leve1数组的索引值

    return levex - levay;
});

Console.WriteLine(string.Join(",", pukes));
相关推荐
一直学习永不止步1 分钟前
LeetCode题练习与总结:赎金信--383
java·数据结构·算法·leetcode·字符串·哈希表·计数
△曉風殘月〆5 小时前
WPF MVVM入门系列教程(二、依赖属性)
c#·wpf·mvvm
逐·風7 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
wheeldown8 小时前
【数据结构】选择排序
数据结构·算法·排序算法
m0_6569747410 小时前
C#中的集合类及其使用
开发语言·c#
九鼎科技-Leo10 小时前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net
躺不平的理查德12 小时前
数据结构-链表【chapter1】【c语言版】
c语言·开发语言·数据结构·链表·visual studio
阿洵Rain12 小时前
【C++】哈希
数据结构·c++·算法·list·哈希算法
Leo.yuan12 小时前
39页PDF | 华为数据架构建设交流材料(限免下载)
数据结构·华为
九鼎科技-Leo13 小时前
什么是 ASP.NET Core?与 ASP.NET MVC 有什么区别?
windows·后端·c#·asp.net·mvc·.net