排序列表与 SortedDictionary比较vs 字典
我有一大堆小对象,每个对象都有一个唯一的字符串标识。我需要决定使用哪个类。
MSDN 说的是前两个
这两个类有相似的对象 模型,并且都有 O(log n) 检索。两个班级在哪里 不同之处在于内存使用和速度 插入和删除
因为我很少插入,大多数只是检索,所以似乎两者都对我有好处。普通的旧词典怎么样?
I have a large collection of small objects, each has a unique string ident. I need to decide which class to use.
MSDN says about the first two
The two classes have similar object
models, and both have O(log n)
retrieval. Where the two classes
differ is in memory use and speed of
insertion and removal
Since I rarely insert, mostly just retrieve it seems both are good for me. What about the plain old Dictionary?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您对排序不感兴趣,那么普通旧字典是最好的选择(因为它的检索时间为 O(1))。如果您不打算对列表进行太多修改,则应该使用 SortedList,因为它使用的内存较少。
Plain-old dictionary is the best option if you're not interested in sorting (since it's O(1) retrieval). If you're not going to modify the list much you should use SortedList since it uses less memory.