排序列表与 SortedDictionary比较vs 字典

发布于 2024-10-19 17:49:33 字数 217 浏览 2 评论 0原文

我有一大堆小对象,每个对象都有一个唯一的字符串标识。我需要决定使用哪个类。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情释 2024-10-26 17:49:33

如果您对排序不感兴趣,那么普通旧字典是最好的选择(因为它的检索时间为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文