两组之间缺失元素的数量(目标 C)
我正在尝试优化一个查询,我想要一个“足够接近”的响应。
我有两套:A 和 B。A
套包含 1, 2, 3, 5, 6, 7, 8 集合 B 包含 1, 2, 3, 4
我想做的是对照 A 检查 B,这样它会告诉我缺少 1 个元素(在本例中为 4 个)。
除了逐个元素进行比较之外,还有更干净、更有效的方法吗?
I am attempting to optimize a query where I want a "close enough" response.
I have two sets: A and B.
Set A contains 1, 2, 3, 5, 6, 7, 8
Set B contains 1, 2, 3, 4
What I'd like to do is check B against A in such a way that it would tell me that 1 element is missing (4 in this case).
Is there a cleaner, more efficient way of doing this besides just going element by element and comparing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考: NSMutableSet
Reference : NSMutableSet