删除 NSdictionary 中的重复项

发布于 2024-08-25 10:51:08 字数 121 浏览 8 评论 0原文

有没有办法从 NSDictionary 中删除重复的(键值)对?

编辑: 我的描述具有误导性,我有重复的对,例如
键1-值1
键1-值1
键2-值2
键1-值1
ETC..

Is there a way to remove duplicate (key-value) pairs from NSDictionary ?

EDIT:
My description was misleading, I have duplicate pairs e.g.
key1-value1
key1-value1
key2-value2
key1-value1
etc..

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

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

发布评论

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

评论(3

暮凉 2024-09-01 10:51:08

反转键值不是一个好主意,因为并非所有值都可以是键。
你可以这样做:

// dict 是原始字典,newDict 新字典不重复。

NSMutableDictionary * newDict = [NSMutableDictionary dictionaryWithCapacity:[dict count]];
for(id item in [dict allValues]){
    NSArray * keys = [dict allKeysForObject:item];
    [newDict setObject:item forKey:[keys objectAtIndex:0]];
}

yuo 还可以使用 lastObject 而不是 objectAtIndex:0 为 dup 对象留下其他键

reversing key-value is not good idea because not all values can be keys.
You can do it with:

// dict is original dictionary, newDict new dictionary withot duplicates.

NSMutableDictionary * newDict = [NSMutableDictionary dictionaryWithCapacity:[dict count]];
for(id item in [dict allValues]){
    NSArray * keys = [dict allKeysForObject:item];
    [newDict setObject:item forKey:[keys objectAtIndex:0]];
}

yuo can also use lastObject instead of objectAtIndex:0 to leave other key for dup objects

來不及說愛妳 2024-09-01 10:51:08

一种方法是按值/键将键/值对放入字典中,然后将其转换回键/值。

One way is to put the key/value pairs into a dictionary by value/key and then converting that back to key/value.

私藏温柔 2024-09-01 10:51:08

我想不出内置方法。

如果您迭代这些值, allKeysForObject: 将为您提供每个值的一组键,如果您有多个键,则该值有重复项。

I can't think of a built-in method.

If you iterate over the values, allKeysForObject: will give you an array of keys for each value and if you have more more than one key, that value has duplicates.

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