使用 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 }; // Initial Array Console.WriteLine("Initial Array..."); foreach(int items in arr) { Console.WriteLine(items); } Array.Sort < int > (arr, new Comparison < int > ((val1, val2) => val2.CompareTo(val1))); // Sorted Array Console.WriteLine("Sorted Array in decreasing order..."); foreach(int items in arr) { Console.WriteLine(items); } } }
输出
Initial Array... 87 23 65 29 67 Sorted Array in decreasing order... 87 67 65 29 23
广告