使用 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 红包祝福语简短10字
18 周六早晨祝福语简短