码迷,mamicode.com
首页 > 编程语言 > 详细

C# 排序

时间:2016-09-12 12:42:31      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:c# sort

目前集合用得最多的是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

本文出自 “Better_Power_Wisdom” 博客,请务必保留此出处http://aonaufly.blog.51cto.com/3554853/1851884

C# 排序

标签:c# sort

原文地址:http://aonaufly.blog.51cto.com/3554853/1851884

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!