NSDictionary VS NSArray+NSPredicate:哪个更快/推荐

发布于 2024-12-04 13:22:19 字数 245 浏览 0 评论 0原文

从集合中获取对象的速度更快?

一个。使用 [dictionary objectForKey:key]; 在 NSDictionary 中搜索;

b.使用 [NSPredicate predicateWithFormat:@"someKey like %@",someKeyValue]; 在 NSArray 中搜索

在这两种情况下,我都会创建集合。

问候!

What is faster getting to an object from a collection?

a. Searching in an NSDictionary with [dictionary objectForKey:key];
or

b. Searching in an NSArray with [NSPredicate predicateWithFormat:@"someKey like %@",someKeyValue];

In both cases I create the collections.

Regards!

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

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

发布评论

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

评论(1

世界等同你 2024-12-11 13:22:19

假设有一个编程良好的字典,速度会快得多。一个好的字典应该使用哈希映射在恒定时间 O(1) 内找到你的键。如果数组已排序,知道这一点,并使用二分搜索,它可以优化为 O(log n) 的二分搜索,否则它将必须线性地查看每个对象,这是一个 O(n) 操作。最好的是,如果您能以某种方式将键放入直接索引中,可能是一次性排序。

Assuming a well programmed dictionary, that's going to be much faster. A good dictionary should find your key in constant time O(1) using a hashmap. If the array is sorted, knows that, and uses a binary search it can optimize to a binary search at O(log n), otherwise it will have to linearly look at every object, an O(n) operation. What would be best is if you could somehow make the key into a direct index, possibly with a one-time sort.

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