查找 C# SortedList 中是否存在键的最佳方法是什么?

发布于 2024-12-04 04:10:24 字数 174 浏览 0 评论 0原文

查找 C# SortedList 中是否存在键的最佳方法是什么?

问题很清楚,我有一个 SortedList 代表一个关联的数组。键和值都是字符串。我正在考虑扫描线性,但二分搜索更快,因为它是“已排序”的。

我想知道是否有一种标准方法可以通过密钥查找该对,就像 MSDN 或一些流行的地方所指出的那样?

Which is the best way to find if a key exists in C# SortedList?

The question is quite clear, I have a SortedList represents an associated array. Both key and values are string. I'm thinking of scanning linear but binary search is faster coz it's 'Sorted'.

I wonder if there's a standard way to find the pair by key, like noted in MSDN or some where popular?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瀟灑尐姊 2024-12-11 04:10:24

ContainsKey 是找出密钥是否存在的最佳方法。它已经经过优化,您无需制定自定义搜索算法:

“此方法使用二分搜索算法;因此,此
方法是一个 O(log n) 操作,其中 n 是 Count。”

ContainsKey is the best way to find out if a key exists. It is already optimized, there is no need for you to make a custom search algorithm:

"This method uses a binary search algorithm; therefore, this
method is an O(log n) operation, where n is Count."

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