ContainsKey 和 TryGetValue 的性能如何?

发布于 2024-11-27 17:58:30 字数 231 浏览 0 评论 0原文

我正在准备面试,一些明显的面试问题(例如计算字符串中字符的频率)涉及将所有字符放入哈希表/字典中,以获得算法的 O(n) 运行时间。我的问题是,使用 ContainsKeyTryGetValue 检查键是否已插入哈希表对性能有何影响?对于此类使用 ContainsKeyTryGetValue 的问题,我还能使用 O(n) 算法吗?

I'm prepping for interviews, and some obvious interview questions such as counting frequency of characters in a string involve putting all of the characters into a Hashtable/Dictionary in order to get O(n) runtime for the algorithm. My question is, what is the performance hit by using ContainsKey and TryGetValue to check to see if a key has already been inserted into the Hashtable? Can I still have an O(n) algorithm for problems like these that use ContainsKey or TryGetValue?

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

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

发布评论

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

评论(1

嗳卜坏 2024-12-04 17:58:30

假设哈希值良好且没有太多冲突,则每个操作都是 O(1) 操作。

至于这些操作是如何工作的......我建议您阅读哈希表

Assuming a good hash without too many collisions, each of those are O(1) operations.

As for how those operations work... I suggest you read up on hash tables.

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