美文网首页
SortedList

SortedList

作者: 津涵 | 来源:发表于2019-03-29 11:27 被阅读0次

one value per key 一键一值

SortedList<TKey, TValue>

multiple values per key 一键多值

Lookup<TKey, TElement>

SortedList与SortedDictionary

1)SortedList<TKey, TValue> uses less memory than SortedDictionary<TKey, TValue>.
2)SortedDictionary<TKey, TValue> has faster insertion and removal of elements.
3)When populating the collection with already sorted data, SortedList<TKey, TValue> is faster if capacity changes are not needed.

相关文章

  • SortedList

    one value per key 一键一值 SortedList multiple ...

  • Android——SortedList

    一、作用 保持内部数据有序,可自动去重,在对 SortedList 数据进行增删改查时,能够自动通知 Recycl...

  • RecyclerView优化:SortedList的使用

    SortedList算不上优化,如果列表有排序的话,可以使用这个集合来代替,实现SortedListAdapter...

网友评论

      本文标题:SortedList

      本文链接:https://www.haomeiwen.com/subject/gsxlbqtx.html