使用 C# 按降序对数组进行排序
声明一个数组并初始化-
int[] arr = new int[] {
87,
23,
65,
29,
67
};要排序,请使用该Sort()方法并按CompareTo()降序比较和显示-
Array.Sort < int > (arr, new Comparison < int > ((val1, val2) => val2.CompareTo(val1)));
让我们看看完整的代码-
示例
using System;
using System.Collections.Generic;
using System.Text;
public class Demo {
public static void Main(string[] args) {
int[] arr = new int[] {
87,
23,
65,
29,
67
};
//初始数组
Console.WriteLine("初始数组...");
foreach(int items in arr) {
Console.WriteLine(items);
}
Array.Sort< int > (arr, new Comparison < int > ((val1, val2) => val2.CompareTo(val1)));
//排序数组
Console.WriteLine("按降序排列的数组...");
foreach(int items in arr) {
Console.WriteLine(items);
}
}
}输出结果初始数组... 87 23 65 29 67 按降序排列的数组... 87 67 65 29 23
热门推荐
10 情侣祝福语古文简短独特
11 酒店伴娘祝福语简短
12 晚上甜蜜的祝福语简短
13 给新娘简短的祝福语
14 当爸爸的简短祝福语
15 洛宁新年祝福语大全简短
16 新年祝福语简短搞笑幽默
17 结婚祝福语大全简短霸气
18 新人结婚祝福语简短高端