方法扩展,以将项目插入已排序的集合中。 /// pu_c# observablecollection 排序">
当前位置:   article > 正文

C# 基于ObservableCollection<T>实现集合排序_c# observablecollection 排序

c# observablecollection 排序

C# 基于ObservableCollection实现集合排序

SortedObservableCollection<T, TKey>

    /// <summary>
    /// 使用<see cref="AddSorted"/>方法扩展<see cref="ObservableCollection{T}"/>,以将项目插入已排序的集合中。
    /// </summary>
    public class SortedObservableCollection<T, TKey> : ObservableCollection<T>
    {
        private readonly Func<T, TKey> m_KeySelector;
        private readonly IComparer<TKey> m_Comparer;

        /// <summary>
        /// 创建一个新的SortedObservableCollection实例。
        /// </summary>
        /// <param name="keySelector">选择排序键的功能。</param>
        public SortedObservableCollection(Func<T, TKey> keySelector)
        {
            this.m_KeySelector = keySelector;
            this.m_Comparer = Comparer<TKey>.Default;
        }

        /// <summary>
        /// 将项目添加到排序的集合中。
        /// </summary>
        /// <param name="item">项目</param>
        public void AddSorted(T item)
        {
            int i = 0;
            int maxIndex = this.Count - 1;

            while (i <= maxIndex)
            {
                int centerIndex = (i + maxIndex) / 2;

                //
                // 摘要: 比较两个对象并返回指示一个是否小于、 等于还是大于另一个值。
                // 参数:
                //   x: 要比较的第一个对象。
                //   y: 要比较的第二个对象。
                // 返回结果:
                //  小于零 :    x 小于 y。 
                //  零 :        x 等于 y。 
                //  大于零 :    x 大于 y。
                int c = m_Comparer.Compare(m_KeySelector(item), m_KeySelector(this[centerIndex]));

                if (c == 0)
                {
                    i = centerIndex;
                    break;
                }

                if (c > 0)
                {
                    i = centerIndex + 1;
                }
                else
                {
                    maxIndex = centerIndex - 1;
                }
            }
            this.Insert(i, item);
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="index"></param>
        /// <param name="item"></param>
        public void SetItemEx(int index, T item)
        {
            base.SetItem(index, item);
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/114491
推荐阅读
相关标签