当前位置:  编程技术>.net/c#/asp.net

c#集合快速排序类实现代码分享

    来源: 互联网  发布时间:2014-10-25

    本文导语:  说明: 1、集合类型参数化; 2、可根据集合中的对象的各个属性进行排序,传入属性名称即可; 注:属性必须实现了IComparable接口,C#中int、datetime、string等基本类型都已经实现了IComparable接口。 代码如下:///     /// 对集合进...

说明:

1、集合类型参数化;

2、可根据集合中的对象的各个属性进行排序,传入属性名称即可;

注:属性必须实现了IComparable接口,C#中int、datetime、string等基本类型都已经实现了IComparable接口。

代码如下:

///
    /// 对集合进行排序,如
    /// List users=new List(){.......}
    /// ListSorter.SortList(ref users,"Name",SortDirection.Ascending);
    ///
    public class ListSorter
    {
        public static void SortList(ref TCollection list, string property, SortDirection direction) where TCollection : IList
        {
            PropertyInfo[] propertyinfos = typeof(TItem).GetProperties();
            foreach (PropertyInfo propertyinfo in propertyinfos)
            {
                if (propertyinfo.Name == property)          //取得指定的排序属性
             // http://www.cnblogs.com/sosoft/
                {
                    QuickSort(ref list, 0, list.Count - 1, propertyinfo, direction);
                }
            }
        }
        ///
        /// 快速排序算法
        ///
        /// 集合类型,需要实现Ilist集合
        /// 集合中对象的类型
        /// 集合对象
        /// 起始位置,从0开始
        /// 终止位置
        /// 集合中对象的属性,属性必须要实现IComparable接口
        /// 排序类型(升序或降序)
        private static void QuickSort(ref TCollection list, int left, int right, PropertyInfo propertyinfo, SortDirection direction) where TCollection : IList
        {
            if (left < right)
            {
                int i = left, j = right;
                TItem key = list[left];
                while (i < j)
                {
                    if (direction == SortDirection.Ascending)
                    {
                        while (i < j && ((IComparable)propertyinfo.GetValue(key, null)).CompareTo((IComparable)propertyinfo.GetValue(list[j], null)) < 0)
                        {
                            j--;
                        }
                        if (i < j)
                        {
                            list[i] = list[j];
                            i++;
                        }

                        while (i < j && ((IComparable)propertyinfo.GetValue(key, null)).CompareTo((IComparable)propertyinfo.GetValue(list[i], null)) > 0)
                        {
                            i++;
                        }
                        if (i < j)
                        {
                            list[j] = list[i];
                            j--;
                        }
                        list[i] = key;
                    }
                    else
                    {
                        while (i < j && ((IComparable)propertyinfo.GetValue(key, null)).CompareTo((IComparable)propertyinfo.GetValue(list[j], null)) > 0)
                        {
                            j--;
                        }
                        if (i < j)
                        {
                            list[i] = list[j];
                            i++;
                        }

                        while (i < j && ((IComparable)propertyinfo.GetValue(key, null)).CompareTo((IComparable)propertyinfo.GetValue(list[i], null)) < 0)
                        {
                            i++;
                        }
                        if (i < j)
                        {
                            list[j] = list[i];
                            j--;
                        }
                        list[i] = key;
                    }
                }
                //执行递归调用
                QuickSort(ref list, left, i - 1, propertyinfo, direction);
                QuickSort(ref list, i + 1, right, propertyinfo, direction);
            }
        }
    }
    ///
    /// 排序类型
    ///
    public enum SortDirection
    {
        Ascending,
        Descending
    }


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 删除JAVA集合中元素的实现代码
  • 详解JAVA高质量代码之数组与集合
  • C++ 基本算法 冒泡法、交换法、选择法、实现代码集合
  • c++ stl容器set成员函数介绍及set集合插入,遍历等用法举例
  • SQL 比较一个集合是否在另一个集合里存在的方法分享
  • iis安装配置详细图文介绍及视频教程集合
  • 基于集合的子集与集合的全排列的相关问题
  • Android壁纸应用的集合 WaddaFundraiser!
  • Java 实时集合框架 Javolution
  • SQL集合嵌套查询的三个例子
  • Java集合工具包 lambdaj
  • Eclipse插件集合 PTI
  • Java有没有集合的概念
  • PS 的 CD 工具集合 PSXImager
  • Linux小游戏集合 LGames
  • Box 关键 PHP 框架集合 Bart
  • jQuery 插件集合 CodyHouse
  • CSS 列表滚动效果集合 stroll.js
  • jQuery插件集合 MiniJS
  • 谁有 电子版 mastering ejb 2e 多谢!!及学习EJB 集合什么实例学习比较快一点?
  • java集合框架 hppc
  • GWT控件集合 GWTChismes
  • Java集合框架 fastutil
  • Java集合类 GNU Trove


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3