目前集合用得最多的是Array和List,现对这2个Array和List的排序,做一些测试:
先上栗子:
Int32[] _testSort = new Int32[] { 1, 4, 2, 6, 8, 18, 3, 5, 9, 7, 11, 10 }; Array.Sort(_testSort, (a, b) => b-a); for (int i = 0; i < _testSort.Length; i += 1) { Console.WriteLine(_testSort[i]); } Console.WriteLine("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); List<Int32> _listSort = new List<int>() { 1, 4, 2, 6, 8, 18, 3, 5, 9, 7, 11, 10 }; _listSort.Sort((a, b) => b - a); for (int i = 0; i < _listSort.Count; i += 1 ) { Console.WriteLine(_listSort[i]); } Console.ReadLine();
打印结果 :
C# Sort默认为升序 a-b , 若要将其将为降序 则是-(a-b) 也就是 b-a
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。